NhibernateReview
摘要:1.KeyColumn public class ProductMap : ClassMap<Product>{ public ProductMap() { Id(p => p.ProductID); Map(p => p.CreateTime); Map(p => p.Name); Map(p => p.Price); }...
阅读全文
Inverse.Cascade.All.Table
摘要:public class StoreMap : ClassMap<Store>{ public StoreMap() { Id(x => x.Id); Map(x => x.Name); HasMany(x => x.Staff) .Inverse() .Cascade.All(); HasManyToMany(x => x.Products) ...
阅读全文
js:confirm
摘要:OnClientClick="javascript:return confirm('是否继续?');"
阅读全文
Repeater排序2
摘要:这次使用的是jquery.tablesorter.js来排序 1. <link href="/Scripts/jqueryplugin/tablesorter/style.css" rel="stylesheet" type="text/css" /> <script src="/Scripts/jqueryplugin/jquery.tablesorter.js" type="tex...
阅读全文
Repeater排序
摘要:repeater<asp:Repeater ID="rptGroups" runat="server" OnItemDataBound="rptGroups_ItemDataBound" OnItemCommand="rptGroups_ItemCommand">rd<td> <asp:LinkButton ID="lbname" R...
阅读全文