Gourav, You're not looking to hide the extension of the file; you're looking to implement a web site (or web service) which utilizes REST. In .NET, the most popular (and industry standard) way to do this is to convert your ASPX web application into an ASP.NET MVC web application. There are ways you can cheat your typical ASP.NET web application into making your URLs REST-like while still serving your ASPX pages, but said ways are considered more of a work-around. Also, those work-arounds typically utilize the query string to identify which pages need to be served to the user's browser which, to me, comes off as a "dirty, but passable" feeling.
If you take the ASP.NET MVC route, be expected to change your perspective on how your website works behind the scenes. In the ASPX world, you're serving server-side pages which know everything about what you need to display and how to display it. In the ASP.NET MVC world, pages only exist only to make data look pretty. It's up to the other components of the application (typically the controller) to determine where data comes from, what data needs to be shown, and - in some case - what page (or "view") will show it. I can't really point you in the right direction for implementing REST outside of ASP.NET MVC as I always viewed ASP.NET MVC as *the* .NET solution for implementing REST. That being said, you can find all the information you need to know about ASP.NET MVC at http://www.asp.net/mvc . I'd even hazard you to take a look at one or two of the Pluralsight training videos on the left side of the page to get a better glimpse at ASP.NET MVC. Best of luck, - Travis On Oct 3, 1:25 am, Gourav <[email protected]> wrote: > Dear All, > > I had very much googling to find out. > How to hide Hide .aspx From All Web Pages? > But i didn't get any satisfaction answer.So any body can tell me how > can i do.Or if any one have a small project then please provide me for > better understanding. I'll be waiting for reply.Thanks in advance. > > @All : Please don't provide any google tiny url.Because i know how to > search in Google. :) -- You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/dotnetdevelopment?hl=en?hl=en or visit the group website at http://megasolutions.net
