0

我有我的客户创建的动态菜单。我已经在Application_Start活动中注册了我的路线global.asax。现在我想在我的客户添加新菜单时注册路线。我怎样才能做到这一点?

目前我已经在 global.asax 中的 Application_Start 事件中注册了所有旧路由。

void Application_Start(object sender, EventArgs e)
{
    RegisterRoutes(RouteTable.Routes);
}

void RegisterRoutes(RouteCollection routes)
{

    string connectionstring = System.Configuration.ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
    SqlConnection sqlCon = new SqlConnection(connectionstring);
    SqlCommand sqlCmd = new SqlCommand("Sch_Sp_GetRegisterRoutes", sqlCon);
    sqlCmd.CommandType = CommandType.StoredProcedure;

    SqlDataAdapter sda = new SqlDataAdapter(sqlCmd);
    DataTable dt = new DataTable();

    try
    {
        sda.Fill(dt);
    }
    catch (Exception ex)
    {
    }
    finally
    {
        sqlCon.Close();

    }
    if (dt != null && dt.Rows.Count > 0)
    {
        foreach (DataRow dr in dt.Rows)
        {
            try
            {
                routes.MapPageRoute(dr["Menuname"].ToString().Replace(" ",string.Empty),
              dr["URL"].ToString(),
               "~/" + dr["Pagename"].ToString());
            }
            catch (Exception exx)
            {

            }

        }
    }


}

在管理员登录中,我为我的客户提供了类似 cms 的功能,以便他们可以创建新页面。现在我的问题是,我如何在路由中注册这些新的页面路由?. 我不想每次客户添加新页面时都重新启动我的应用程序。我只是希望当客户添加新页面时我调用一个方法来在我的路由中注册这些页面。我怎样才能做到这一点?

最后我有办法解决它。我有调用以下方法来重新启动我的应用程序..

 System.Web.HttpRuntime.UnloadAppDomain();
4

1 回答 1

0

现在我使用以下代码重新启动我的应用程序,通过这些新创建的 url 在路由中注册。

 System.Web.HttpRuntime.UnloadAppDomain();
于 2013-09-21T12:55:56.610 回答