Sun_china

交流更多,收获更多?

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  .Net 学习

上一页 1 2 3 4 下一页

摘要:第一种方法: Response.ClearContent(); Response.ClearHeaders(); Response.ContentType = "Application/msword"; string s=Server.MapPath("C#语言参考.doc"); Response.WriteFile("C#语言参考.doc"); Response.Write(s)... 阅读全文
posted @ 2007-06-05 14:07 Sun_china 阅读(5733) 评论(2) 推荐(0) 编辑

摘要: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... 阅读全文
posted @ 2007-06-01 11:34 Sun_china 阅读(310) 评论(0) 推荐(0) 编辑

摘要:1 2 3 4 5 6 7 8 96 97 98 点击 99 100101 阅读全文
posted @ 2007-05-29 17:04 Sun_china 阅读(162) 评论(0) 推荐(0) 编辑

摘要:注意这里是用post的方法,一定要写post头的,以指明post文档类型,用get方法是a.aspx?id=1&jj=4这样用的目标文件用request就可以收了 阅读全文
posted @ 2007-05-29 16:30 Sun_china 阅读(240) 评论(0) 推荐(0) 编辑

摘要:C#在处理const关键字的时候,直接嵌入值来进行编译。 而在处理readonly关键字的时候,是动态引用的。 阅读全文
posted @ 2007-05-25 16:20 Sun_china 阅读(165) 评论(0) 推荐(0) 编辑

摘要:上传大数据(upload)[超过100M以上解决如下: 1、C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\machine.config 修改:文件---->maxRequestLength="4096" K为单位 默认是4096K=4M,可以改为50M=50 000(50后面3个0) 2、计算机管理-... 阅读全文
posted @ 2007-05-25 09:25 Sun_china 阅读(203) 评论(0) 推荐(0) 编辑

摘要:1具体使用: 2 3 4 51. 在项目中添加引用Ajax.dll (我用的版本是5.7.22.2) 6 7 8 92. 修改web.config,在里面增加 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 283. 新建一个实现业务逻辑的类,并在里面增加方法,在... 阅读全文
posted @ 2007-05-15 15:23 Sun_china 阅读(679) 评论(0) 推荐(0) 编辑

摘要:1string strContent = TextBox1.Text; 2 3 //(http:\/\/([\w.]+\/?)\S*) 4 //http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)? 5 6 //都是匹配url的正则 7 Regex urlregex = new R... 阅读全文
posted @ 2007-05-15 14:06 Sun_china 阅读(229) 评论(0) 推荐(0) 编辑

摘要:因此那个using在这里的主要目的,第一是确保connection 变量在using之外的语句块不会被使用,第二是确保... 阅读全文
posted @ 2007-05-11 14:11 Sun_china 阅读(2795) 评论(0) 推荐(0) 编辑

摘要:。.net中出现 allowDefinition='MachineToApplication'解决方法:在IIS里,点击你源码的虚拟目录,右键-->属性-->应用程序名-->创建 阅读全文
posted @ 2007-05-10 16:41 Sun_china 阅读(141) 评论(0) 推荐(0) 编辑

摘要:1我们通常备份数据库时,需要登录数据库服务器去备份和恢复,这样很不方便,其实SQL SERVER自带的命令可能让我们很简单地实现远程通过Asp.Net备份和恢复数据库。 2BACKUP DATABASE '被备份的数据库名' TO DISK = '备份文件路径'; 3ALTER DATABASE '被恢复的数据库名' SET OFFLINE WITH ROOLBACK IMMEDIATE;... 阅读全文
posted @ 2007-05-09 13:39 Sun_china 阅读(493) 评论(0) 推荐(0) 编辑

摘要:11.加密。 23 Response.Redirect("DetailInfo.aspx?id=" + Convert.ToBase64String(System.Text.Encoding.Default.GetBytes("sp10006")).Replace("+","%2B"));45 2.解密。67 string ID = System.Text.Encoding.Default.... 阅读全文
posted @ 2007-05-09 09:24 Sun_china 阅读(412) 评论(0) 推荐(0) 编辑

摘要:1/**//// 2 /// 显示消息提示对话框 3 /// 4 /// 当前页面指针,一般为this 5 /// 提示信息 6 public static void Show(System.Web.UI.Page page,string msg) 7 { 8 page.Registe... 阅读全文
posted @ 2007-05-08 15:41 Sun_china 阅读(369) 评论(0) 推荐(0) 编辑

摘要:如果你用encodeURI编码的字符串,是可以通过UrlDecode解码出来的,也就是说UrlDecode可以识别encodeURI(js)和UrlEncode(c#)两个编码格式.可以想到,MS在设计这个类库的时候,已经考虑到了会接受到encodeURI的编码,按常理来想的话,既然考虑到了解码,自然会考虑到编码,也即UrlEncode应该提供可以编码成decodeURI可以解码的格式 阅读全文
posted @ 2007-04-28 18:51 Sun_china 阅读(455) 评论(0) 推荐(0) 编辑

摘要:2007-04-04 09:05一、目前在ASP.NET中页面传值共有这么几种方式:1、表单提交, .form1.submit();.此种方在ASP。NET中无效,因为ASP。NET的表单总是提交到自身页面,如果要提交到别一页面,需要特殊处理。2、链接地址传送接收页面: string str = Request["param1"]3、Session共享发送页面:Session("param1"... 阅读全文
posted @ 2007-04-27 19:19 Sun_china 阅读(260) 评论(0) 推荐(0) 编辑

摘要:不要使用Response.Redirect,而应该使用Server.Transfere.g// in global.asaxprotected void Application_Error(Object sender, EventArgs e) {if (Server.GetLastError() is HttpUnhandledException)Server.Transfer("MyError... 阅读全文
posted @ 2007-04-27 11:18 Sun_china 阅读(257) 评论(0) 推荐(0) 编辑

摘要:11: GroupRadioButton selectRadioButton = 2 this.FindControl("selectRadioButton") as GroupRadioButton;342:GroupRadioButton selectRadioButton = 5 (GroupRadioButton)this.FindControl("... 阅读全文
posted @ 2007-04-25 16:24 Sun_china 阅读(223) 评论(0) 推荐(0) 编辑

摘要:无法找到脚本库"/aspnet_client/system_web/1_1_4322/webuivalidation.js".请尝试受动放置此文件,或通过运行"aspnet_regiis -c"从新安装. 在此计算机上必须有管理员权限才能运行此工具.出现此问题是:在项目根目录的文件下aspnet_client 下system_web 下1_1_4322下 没有WebUIValidation.... 阅读全文
posted @ 2007-04-25 09:40 Sun_china 阅读(227) 评论(0) 推荐(0) 编辑

摘要:1using System; 2using System.Collections; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Web; 7using System.Web.SessionState; 8using System.Web.UI; 9using Syst... 阅读全文
posted @ 2007-04-23 16:57 Sun_china 阅读(303) 评论(1) 推荐(0) 编辑

摘要:1using System; 2using System.Data; 3using System.Configuration; 4using System.Collections; 5using System.Web; 6using System.Web.Security; 7using System.Web.UI; 8using System.Web.UI.WebControls; 9usin... 阅读全文
posted @ 2007-04-23 09:25 Sun_china 阅读(257) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 下一页