ASP.Net开发新手常见问题备忘录
2009-05-12 22:34:48来源:未知 阅读 ()
一位ASP.net初学者学习过程中整理的备忘录,包括“打开新的窗口并传送参数,为按钮添加对话框,删除表格选定记录,删除表格记录警告”等等常见问题的解决方法。
1. 打开新的窗口并传送参数:
传送参数:
以下为引用的内容: response.write("〈script>window.open ('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')〈/script>") |
接收参数:
以下为引用的内容: string a = Request.QueryString("id"); string b = Request.QueryString("id1"); |
2.为按钮添加对话框
以下为引用的内容: Button1.Attributes.Add("onclick","return confirm('确认?')"); button.attributes.add("onclick","if(confirm('are you sure...?')) {return true;}else{return false;}") |
3.删除表格选定记录
以下为引用的内容: int intEmpID = (int)MyDataGrid.DataKeys[e.Item.ItemIndex]; string deleteCmd = "DELETE from Employee where emp_id = " + intEmpID.ToString() |
4.删除表格记录警告
标签: 版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
相关文章
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设 网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源 网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它 服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护 软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷 网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash 热门词条
最新资讯
热门关注
热门标签
|