文件名称:Web开发中的30种常用代码
文件大小:86KB
文件格式:DOC
更新时间:2013-08-18 03:52:32
Web 代码 常用 30
Web开发中的30种常用代码 1. 打开新的窗口并传送参数: 传送参数: response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>") 接收参数: string a = Request.QueryString("id"); string b = Request.QueryString("id1"); ……