摘要:
虽然是E文的,但我相信大家的能力,在学习过程中也把英语练了,蛮好的。 Visual Studio Team System for Testers Content Index for Web Tests and Load Tests ... 阅读全文
摘要:
This article discusses: How view state works ASP.NET 2.0 improvements to view state Using control state to main... 阅读全文
摘要:
vs2005的ACT压力测试软件 http://download.microsoft.com/download/a/8/2/a82e7ba7-c772-4ec4-b186-2cf147f42c11/setup.exe 前 言 对于直接面对互联网用户的WEB应用,在开发设计的时候必须格外小心,因为谁也不知道在单位时间内WEB程序访问和运行的速度。所以,在程序设计完成以后,最后针对程序进行一些严... 阅读全文
摘要:
I'm describing here the procedure how to localize CrystalReportViewer in .NET 1.1 framework, in an _almost_ proper way (i.e., we actually create a satellite assembly containing resources). We have to ... 阅读全文
摘要:
Problem: Login failed for user 'sa'. Reason: Not associated with a trusted SQL Server connection. 可以连接本机的SqlServer上面的数据库,但是连接服务器上面的有问题,原因如上。在百度和Google中查找相关的帮助都是这是因为没有使用SQL SERVER和WINDOWS的混合登陆模... 阅读全文
摘要:
在原有的asp程序中用asp.net添加功能模块,共享SESSIONs是一个难点,下面介绍一种较为简洁的方法,可以在asp和asp.net中共享session会话。 登录页面使用C#重新创建,在成功登录后执行语句: Response.Write(""); 打开aspxtoasp.aspx页面,action设为aspxtoasp.asp,即可将session值post到asp页面,因为是单向传... 阅读全文
摘要:
微软.net中,Session的存储机制已经与Asp的存储机制不一样,虽然可以在同一个IIS下同时运行asp与aspx,但是它们之间不能传递Session。 之前大批系统应用到了asp,在升级过程中,如果完全抛弃asp来重写,一来工作量太大,二来以前的成果不能保存下来。 所以微软提出了一个Session共享的解决方案,只是此文档光说明原理,并没有说具体的操作步骤,由此,我撰文描述过程。 简单说... 阅读全文
摘要:
在.net执行sql脚本的简单实现 郑佐2004-12-25 看到csdn社区经常有人问在.net中如果执行sql脚本,下面是使用C#调用cmd来执行osql实现脚本的执行。 using System; using System.Data; using System.Collections; using System.Xml; using System.IO; using Sy... 阅读全文
摘要:
WebServiceDemo.asmx public class ServiceDemo : WebService { [WebMethod] public string HelloWorld(string ss) { return "Hello World,"+ss; } [Web... 阅读全文
摘要:
declare @t table(RecID int,PUnitNo nvarchar(100),UnitNo nvarchar(100),PathDepth int,Path nvarchar(100)) declare @level int set @level=1 insert into @t SELECT RecID,PUnitNo,UnitNo,@level AS PathDepth,... 阅读全文