2010年9月17日
摘要: create table a(id varchar(20) primary key,password varchar(20) not null)create table b(id int identity(1,1) primary key,name varchar(50) not null,userId varchar(20),foreign key (userId) references a(i... 阅读全文
posted @ 2010-09-17 16:18 纳米程序员 阅读(12739) 评论(1) 推荐(4) 编辑
摘要: 真是疏忽,原来忘记写DataKeyNames="id" 阅读全文
posted @ 2010-09-17 11:50 纳米程序员 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 当嵌套母版页的子页面与母版页不在同一级目录时,往往会牵涉到外部图片、js、css文件引用的路径问题。(以下是引用别人加自己整理) 1. 图片、<a>标签 非常好解决<img runat="server"src='~/images/log.gif'></script><ahref='~/book/buy.aspx' runat="server">&l... 阅读全文
posted @ 2010-09-17 11:50 纳米程序员 阅读(1222) 评论(0) 推荐(0) 编辑
摘要: 开始的时候都是这样处理的:protectedvoidgrvShow_RowDataBound(objectsender,GridViewRowEventArgse){if(e.Row.RowIndex!=-1)//绑定javascript脚本,弹出提示框,是否确认删除数据!!{e.Row.Cells[17].Attributes.Add("onclick","javascript:returnco... 阅读全文
posted @ 2010-09-17 09:25 纳米程序员 阅读(1524) 评论(0) 推荐(0) 编辑
摘要: <asp:Label runat="server" Text='<%#((Eval("Sex").ToString()=="0")?"男":"女")%>' /> 阅读全文
posted @ 2010-09-17 09:01 纳米程序员 阅读(182) 评论(0) 推荐(0) 编辑