摘要: 在文本框的keypress事件调用下面函数。 如 <input disabled="disabled" type="text" id='userNameToEdit' onkeypress="TextValidate()" /> 如果在文本框中按下特殊字符键,则显示警告信息,或者输入框不接受非法输入。 function TextValidate() { var code; var character; var err_msg = "Text can not contain SPACES or an 阅读全文
posted @ 2011-04-23 09:47 Alec-Yin 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 一、GridView中的删除提示只需在GridView的【RowDataBound】事件中添加如下代码:if (e.Row.RowType == DataControlRowType.DataRow) { if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate) { ((LinkButton)e.Row.Cells[5].Controls[0]).Attributes.Add("onclick", "javascript: 阅读全文
posted @ 2011-04-23 09:45 Alec-Yin 阅读(1733) 评论(2) 推荐(1) 编辑
摘要: 方法一:1、在GridView中添加一个TemplateField字段,把他的ShowHeader改为False。(或在HTML代码中加上 【DataKeyNames="newsId"】这一句,其中【newsId】为GridView绑定的数据库的主码。)2、在GridView的编辑模板中添加一个LinkButton,修改CommandName=Edit,CausesValidation=False,Text="编辑"。3、在GridView的【RowEditing】事件中加上如下代码: Session["id"] = Convert. 阅读全文
posted @ 2011-04-23 09:42 Alec-Yin 阅读(2487) 评论(0) 推荐(2) 编辑
更多前端博客,访问:http://lhyin.com