Tagged Questions
1
vote
0answers
37 views
IIS 7.5 URL rewrite module and URL routing in Global.asax for sub-applications
I have a "top-level" web-site, www.ccesd.ac.uk, and various "lower-level" web-sites running off it such as www.ccesd.ac.uk/BritSocAt that are separate sites but share a lot of code. These lower-level ...
1
vote
1answer
121 views
asp.net global.asax.cs and global.asax difference
My global.asax file. It seems like
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
namespace xxxx
{
...
0
votes
1answer
104 views
Get correct route url data when url routing in asp.net
I am doing route url for SEO.
But while I am getting route data, this error occurs; "404 - File or directory not found."
URL;
...
0
votes
1answer
39 views
What do we have to do in order to push configurations like URL route mappings to ASP.NET MVC Views to an XML file?
All:
We started off our project using ASP.NET Web Forms.
We decided to integrate ASP.NET MVC 4 into our project.
We would like to leave the existing .aspx ASP.NET Web Form pages as it
is already.
...
0
votes
0answers
61 views
What is preferred for routes Global.Asax or a URLRoute attribute
I was wondering for all of our MVC .NET pros what is more preferred when defining routes. Should one look to use Global.asax most of the time or use a library that enables the use of a URLRoute ...
0
votes
0answers
95 views
How to get Cassini (and others) to always call Application_BeginRequest when requesting a URL?
I have a web application which uses a custom framework. It relies on getting an Application_BeginRequest to parse a URL and serve a proper page by Response.Output. Note it's a bit of an experiment and ...
7
votes
6answers
1k views
ASP.NET MVC Url Route supporting (dot)
I hope that you can help me with the below problem.
I am using ASP.NET MVC 3 on IIS7 and would like my application to support username's with dots.
Example: http://localhost/john.lee
This is how my ...
4
votes
1answer
1k views
Captcha control not working with url-routing (ASP.NET 4.0 WebForms)
ASP.NET 4.0 C# WebForms
I have route.Ignore("{resource}.axd/{*pathInfo}"); in my global.asax for my ajax to work correctly.
The control is a "MSCaptcha".
It shows the path in sourcefile ...
0
votes
1answer
733 views
How to generate url in global.asax using my route. int asp.net mvc
I have functionality in BeginRequest event in global.asax which parse request url, check some parts of this and redirect user to another url.
Problem: how to generate url from routeName. I want to do ...
9
votes
4answers
2k views
Understanding routing in Global.asax (asp.net-mvc)
In Global.asax what does the following signify?
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
2
votes
1answer
818 views
Is it possible to run ASP.NET MVC routes in different AppDomains?
I am having problems with thinking up a solution for the following. I got a blog which I recently upgraded from web forms to MVC. The blog is avalible in both swedish and english on two different ...
