只有注册用户登录后才能阅读该文。 阅读全文
2007年6月8日 #
只有注册用户登录后才能阅读该文。 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
2007年6月7日 #
2007年6月5日 #
摘要:
第一种方法: Response.ClearContent(); Response.ClearHeaders(); Response.ContentType = "Application/msword"; string s=Server.MapPath("C#语言参考.doc"); Response.WriteFile("C#语言参考.doc"); Response.Write(s)... 阅读全文
2007年6月1日 #
摘要:
1数据库设计结构 2 3if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[treetemp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) 4drop table [dbo].[treetemp] 5GO 6 7CREATE TABLE [dbo].[tree... 阅读全文
2007年5月29日 #
摘要:
1 2 3 4 5 6 7 8 96 97 98 点击 99 100101 阅读全文
摘要:
注意这里是用post的方法,一定要写post头的,以指明post文档类型,用get方法是a.aspx?id=1&jj=4这样用的目标文件用request就可以收了 阅读全文
2007年5月25日 #
摘要:
C#在处理const关键字的时候,直接嵌入值来进行编译。 而在处理readonly关键字的时候,是动态引用的。 阅读全文