悟生慧

 

2010年7月14日

CheckBox全选或全不选

摘要: <ASP:TEMPLATECOLUMN visible="False" sortexpression="demo" headertext="ID"> <ITEMTEMPLATE> <ASP:LABEL text=’<%# DataBinder.Eval(Container.DataItem, "ArticleID")%>’ runa... 阅读全文

posted @ 2010-07-14 16:44 悟生慧 阅读(205) 评论(0) 推荐(0) 编辑

DataGrid行随鼠标变色

摘要: private void DGzf_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { if (e.Item.ItemType!=ListItemType.Header) { e.Item.Attributes.Add( "onmouseout","this.style.backgrou... 阅读全文

posted @ 2010-07-14 16:42 悟生慧 阅读(187) 评论(0) 推荐(0) 编辑

DataGrid超级连接列

摘要: DataNavigateUrlField="字段名" DataNavigateUrlFormatString=http://6ccn.com/inc/delete.aspx?ID={0} 阅读全文

posted @ 2010-07-14 16:41 悟生慧 阅读(126) 评论(0) 推荐(0) 编辑

回车转换成Tab

摘要: <script language="javascript" for="document" event="onkeydown"> if(event.keyCode==13 && event.srcElement.type!=’button’ && event.srcElement.type!=’submit’... 阅读全文

posted @ 2010-07-14 16:40 悟生慧 阅读(198) 评论(0) 推荐(0) 编辑

获取错误信息并到指定页面

摘要: 不要使用Response.Redirect,而应该使用Server.Transfer例子:// in global.asax protected void Application_Error(Object sender, EventArgs e) { if (Server.GetLastError() is HttpUnhandledException) Server.Transfer("MyEr... 阅读全文

posted @ 2010-07-14 16:38 悟生慧 阅读(147) 评论(0) 推荐(0) 编辑

连接字符串 config

摘要: ConfigurationManager.ConnectionStrings["connstring"].ConnectionString<connectionStrings> <add name="connstring" connectionString="server=.;uid=sa;pwd=111111;database=database" providerName="S... 阅读全文

posted @ 2010-07-14 16:35 悟生慧 阅读(165) 评论(0) 推荐(0) 编辑

为按钮添加对话框

摘要: Button1.Attributes.Add("onclick","return confirm(’确认?’)"); button.attributes.add("onclick","if(confirm(’are you sure...?’)){return true;}else{return false;}") 阅读全文

posted @ 2010-07-14 14:51 悟生慧 阅读(180) 评论(0) 推荐(0) 编辑

打开新的窗口并传送参数

摘要: response.write("<script>window.open(' *.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')</script>") 阅读全文

posted @ 2010-07-14 14:50 悟生慧 阅读(208) 评论(0) 推荐(0) 编辑

导航