I want to develop a very big product with many categories. I want to use Asp.net forms with jQuery and WebMethods like
$.ajax({
type: "POST",
url: "Just.aspx/Fetch",
data: "{'date':'" + sdate + "','edate':'" + edate + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {}
});
[System.Web.Services.WebMethod()]
[System.Web.Script.Services.ScriptMethod()]
public static string Fetch(string date, string edate)
{
//my code here
}
Now my questions are
I am familiar with this method, so should I proceed with this? OR should I use Asp.net MVC?
Is this approach good for developing such big products? If not then suggest me a good one.
I have a lot of categories, so my URL becomes very lengthy. Like this..
mywebsite.com/categories/auto/new/subcategory/save.aspx?id=2332&cat=38
I want to make these URL more userfriendly, how to create a standard for all URL using here?
Should I use URL Rewriting OR Asp.net Routing?