摘要:
(一)后台写JavaScript方式Response.Write("<script>widow.alert(\" " + this.Test1.text + "\")</script>" );(二)Button的OnClientClick 属性方式注:点取消则不执行服务器端的OnClick事件例:<asp: button OnClientClick="return c... 阅读全文
摘要:
Microsoft SQL serverwindows安全登陆 "Data Source=(local); Initial Catalog=Northwind; Integrated Security=True;"SQL Server登陆"Data Source=(local); Initial Catalog=Northwind; UserID=sa; PassWord=111111;"Acce... 阅读全文
摘要:
C#中委托与事件的基本使用方法://定义委托模板Public delegate void ReceiveMsgEventHandled(object sender,clsTcpMsgEventArgs e);//定义事件private event ReceiveMsgEventHandler ReceiveMsgEvent;//公有事件,注册事件Public event ReceiveMsgEve... 阅读全文
摘要:
在web开发经常会遇到如: 这样的字符。它其实是Html将一些特殊字符(Html语法字符)的一种表达方式。下面列举几个常用字符: 空格& &< <> >" "&qpos; ' 阅读全文
摘要:
在网页中经常遇到要设置默认按钮,是在Html的form标签中设置。<form id="form1"defaultbutton="buttion1" //默认按钮 defaultfocut="test1" //默认焦点runat="server"> 阅读全文
摘要:
Coolite中GridPanel自带的分页与GridView的分页一样,都是把所有数据全部读出放至内存中。本文使用数据库中储存过程的方式与GridPanel配合完成,每次访问仅读出分页的数据。前台: <ext:Store ID="Store1" OnRefreshData="Store1_RefershData" runat="server" AutoLoad="true"> <... 阅读全文