在我的Web应用程序中,我正在验证来自glabal.asax的url。我想验证网址,如果需要,需要重定向到一个操作。我正在使用Application_BeginRequest来捕获请求事件。
protected void Application_BeginRequest(object sender,EventArgs e) { // If the product is not registered then // redirect the user to product registraion page. if (Application[ApplicationVarInfo.ProductNotRegistered] != null) { //HOW TO REDIRECT TO ACTION (action=register,controller=product) } }