Asp.Net(C#)
jeerisguo
这个作者很懒,什么都没留下…
展开
-
Asp.net2005不用Ajax实现无刷新验证用户名、密码和中文验证码
主要功能:无刷新实现对用户名,密码,中文验证码的验证!技术要点:使用.NEt2005中新接口“ICallbackEventHandler”用asp.net动态生成中文验证码话不多说,直接看代码,只要有两个页面 Login.aspx 和 ImageR.aspxLogin.aspx 的代码如下: @ Page Language="C#" AutoEventWireup=原创 2007-03-26 00:22:00 · 2068 阅读 · 5 评论 -
给DataGrid添加自动序号,自动编号
这里提供一个简单好用的方法原理:1。利用该DataGrid的Container.ItemIndex asp:DataGrid id="DataGrid1" runat="server"> Columns> asp:TemplateColumn> ItemTemplate> # Container.ItemIndex + 1%> It转载 2007-05-31 16:22:00 · 576 阅读 · 0 评论 -
ASP.net 动态创建LinkButton 和事件
public void Bin_Driver() { string[] drivers = Directory.GetLogicalDrives(); for (int i = 0; i < drivers.Length; i++) { Control c = ParseControl(" | ");原创 2009-11-17 14:51:00 · 971 阅读 · 0 评论