摘要:
MVC服务Autofac 控制反转容器 先下载 Autofac dll, web.config 配置iis6 <httpModules><addname="ContainerDisposal"type="Autofac.Integration.Web.ContainerDisposalModule,Autofac.Integration.Web"/></httpModules><modules><!--ii7配置ioc--><addname="ContainerDisposal& 阅读全文
摘要:
tab 新增 1 2 $("#add").click(function () { 3 index++; //新增tab 4 $("#tt").tabs('add', { 5 title: "New tab" + index, 6 content: 'tab body' + index, 7 iconCls: 'icon-save', 8 ... 阅读全文
摘要:
js 解析 json $("#testJson").click(function () { var $json = "[{name:'张三',age:'12'},{name:'李四',age:15}]"; var test = eval($json); alert(test[1].age);//15 }); /// <summary> ///上传 /// </summary> public class PicUploadHander : IHttpHandler ... 阅读全文
摘要:
View Code 1 <table border=1 id="table6"> 2 <tbody id="tbody6"> 3 <tr class="template repeat"> 4 <td class="content">模板1</td> 5 <td class="content">这里是模板 by yanleigs Email:landgis@126.com</td> 6 <td>< 阅读全文
摘要:
width:”200px”, //宽度title: null, // 标题.closeable: true, // 是否显示关闭按钮show: true, // 立即显示dialog?modal: false, // 半透明遮罩背景modalOpacity: 0.7, //默认模态背景透明度closeText: ‘关闭窗口’, // 关闭窗口的提示文字closeDelay: 0, //自动关闭的延时时间,单位:毫秒dTopNum:false, //弹框的top值,默认居中;closeModal:true //关闭模式,ture隐藏,false移除plain:true //按钮... 阅读全文
摘要:
MvcTagBuilder ToString()重载 ToString() <Lable id="test" style="color:blue">测试</Lable> ToString(TagBuilder.Normal) <Lable id="test" style="color:blue">测试</Lable> ToString(TagBuilder.StartTag) <Lable id="test" style="colo 阅读全文
摘要:
ChildActionOnly:它的目的主要就是让这个Action不通过直接在地址栏输入地址来访问,而是需要通过RenderAction来调用它。[ChildActionOnly]publicActionResultGenreMenu(){returnView();}标记有 ChildActionOnlyAttribute 的任何方法只能通过 Action 或 RenderAction HTML 扩展方法调用。RenderAction:调用子操作方法并在父视图中以内联方式呈现结果 如: @{Html.RenderAction("GenreMenu", "Store 阅读全文