摘要:今天很笨居然要在xp pro上面装iis 6.0 尝试了一下,装不上去阿!费了好半天的劲,又恢复成了iis 5.1可是原来的.net BS项目又打不开了!又要从新安装asp.net 1.1在Visual Studio .NET 2003 命令提示 下面 输入 Aspnet_regiis.exe -i 靠1大功告成!
阅读全文
摘要:1. 打开新的窗口并传送参数: 传送参数:response.write("") 接收参数:string a = Request.QueryString("id");string b = Request.QueryString("id1"); 2.为按钮添加对话框 Button1.Attributes.Add("onclick","return confirm('确认?')"); button...
阅读全文
摘要:1. 打开新的窗口并传送参数: 传送参数: response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>") 接收参数: string a = Request.QueryString("id");str...
阅读全文
摘要:for (int i=0;i<this.Controls[1].Controls.Count;i++) { if (this.Controls[1].Controls[i] is TextBox) { this.Controls[1].Controls[i].Visible = false; } }
阅读全文
摘要:ArrayList的使用方法【转载】 *** Source URL: http://i.yesky.com/bbs/jsp/view.jsp?articleID=889992&forumID=150 *** 1、什么是ArrayList ArrayList就是传说中的动态数组,用MSDN中的说法,就是Array的复杂版本,它提供了如下一些好处: 动态的增加和减少元素 ...
阅读全文