I am working on ASP.NET website.
I need to post a Question Paper based on following parameters.
- University
- Branch
- Subject
At Present My URL is in the below mentioned format
//localhost/MYASP/Posted?PostId=**
My URL should be in the below mention format after URL Rewriting
//localhost/MYASP/Posted/University/Branch/Subject/TITLEOFThePost
And also please let me know the process of finding my querystring after url rewriting
Your best bet would be to use an URL of the format
That way you can simply rewrite the URL using just the ID and the University / Branch / Subject can all be tossed.