-4
asp Webフォームをintergrateする方法asp MVC 4を使用してビジュアルベーシックを使用するC#.Help me !!!asp mvcとの統合asp Webフォーム
ファイルGlobal.asax.cs:
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
ファイルLogin.aspx.vb:
Partial Class Login
Inherits System.Web.UI.Page
Private WithEvents objA2Global As A2Component.A2Global ' RapidISGlobal ' A2Component.A2Global
ファイルのGlobal.asax:
私は問題を持っています%@ Application Codebehind="Global.asax.cs" Inherits="RapidIS.MvcApplication" Language="VB" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ Import Namespace="System.Data" %>
ファイルのルートの設定:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{resource}.aspx/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
protected void Application_Start()
{
RegisterRoutes(RouteTable.Routes);
}
あなたのエラーのコピーとあなたのコードを質問の中で提供してください。画像は無意味です(今は見えますが)。 – Tom
私はいくつか私を助けてください追加! –