top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the advantage of using ASP.NET routing?

+2 votes
663 views
What is the advantage of using ASP.NET routing?
posted May 15, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

In an ASP.NET web application that does not make use of routing, an incoming browser request should map to a physical file. If the file does not exist, we get page not found error.

An ASP.NET web application that does make use of routing, makes use of URLs that do not have to map to specific files in a Web site. Because the URL does not have to map to a file, you can use URLs that are descriptive of the user's action and therefore are more easily understood by users.

answer May 19, 2015 by Manikandan J
...