1 つの CS クラスを作成し、「MainClassName」と言って、cs ファイルに以下のコードを記述します。
public class MainClassName
{
public static void SubClassName(RouteCollection routes)
{
routes.MapPageRoute(
"RouteName", // Route name
"{name}-{some extentions}.aspx", // Route URL (subdomain-example.aspx)
"~/home.aspx",// Web page to handle route
);
}
}
以下のコードを globle.asmx ページに記述してください
void Application_Start(object sender, EventArgs e)
{
MainClassName.SubClassName(RouteTable.Routes);
}
subdomain-example.aspx この URL を使用すると、home.aspx?name=SubDomain にリダイレクトされます。