2005年6月28日

用Response.Redirect()传递汉字

摘要: 传递:String Message = Server.UrlEncode("欢迎学习ASP.NET!");Response.Redirect("WebForm2.aspx?Msg=" + Message);解析:Server.UrlDecode(Request.QueryString["Msg"]) 如果是用javascript,则使用escape()来编码,用Server.UrlDeco... 阅读全文

posted @ 2005-06-28 11:51 DoNet鸟 阅读(1080) 评论(0) 推荐(0) 编辑

设置页面上的某个控件获得焦点(JavaScript)

摘要: 方法一(直接在*.aspx中嵌入代码): ..... 方法二(将javascript代码写在另外单独的文件中): ..... Header.js文件内容如下:function Setfirstfocus(){ document.all.edit1.focus();} 阅读全文

posted @ 2005-06-28 11:31 DoNet鸟 阅读(5020) 评论(2) 推荐(0) 编辑

导航