17.03.24 OA项目问题记录

  1. jquery.unobtrusive-ajax.min.js 的引用
    jquery.unobtrusive-ajax.min.js的引用要在jquery.min.js的引用之后,否则会导致jquery.unobtrusive-ajax.min.js不生效
  2. jquery.unobtrusive-ajax.min.js 的使用
@using (Ajax.BeginForm("EditCategoryInfo", "CategoryInfo", new { }, new AjaxOptions() { HttpMethod = "post", OnSuccess = "afterEdit" }, new { id = "editForm" }))
{
}
  1. 通过radio的值选中对应的radio
 $(":radio[name='status'][value='" + status + "']").prop("checked", "checked");
  1. 在Asp.net MVC中应该怎样使用Spring.Net?
  2. 先导入dll文件
Spring.Core.dll
Spring.Web.dll
Spring.Web.Mvc4.dll
  • 创建Config文件夹,创建xml文件
  • 在xml文件写入相关的配置信息
// controller.xml






// services.xml


  
  

  • 修改Web.config文件中的配置

  
    
      
  • 修改Global文件,继承SpringMvcApplication
 public class MvcApplication : SpringMvcApplication //System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            RouteConfig.RegisterRoutes(RouteTable.Routes);
        }
    }
  • 注意使用Spring.Net要先导入Web.api

你可能感兴趣的:(17.03.24 OA项目问题记录)