what is the url rewriting?how to rewrite the url? give any
example
Answer Posted / chinnu
If you don't like having meaningless URL's for your
visitors (i.e index.aspx?id=3&pid=3932), consider URL Re-
writing. With URL rewriting, you can store all your content
in the database while having user-friendly URL's. Here's a
code snippet to do just this:
void Application_BeginRequest(Object sender, EventArgs e)
{
String strCurrentPath;
String strCustomPath;
strCurrentPath = Request.Path;
strCurrentPath = strCurrentPath.ToLower();
// the URL contains this folder name
if (strCurrentPath.IndexOf( "/SomeSubFolder/" ) > -1)
{
strCustomPath = "getContent.aspx?id=" +
Path.GetFileNameWithoutExtension( strCurrentPath );
// rewrite the URL
Context.RewritePath( strCustomPath );
}
}
The getContent.aspx will take the page name as a parameter
and do a lookup in the database and return the content for
the page. I have left the details out because the point of
the code snippet is to show how to rewrite the URL and get
the data from the database.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Is php the same as html?
List some sorting functions in php?
Tell me what is the default session time in php?
Explain the difference between static and dynamic websites?
What is a static variable in php?
How to Pass JSON Data in a URL using CURL in PHP?
i m a B.E,passed out few yrs bak failed to find good job due to less marks now thinkin of a career as PHP developer. is it a lucarative field and wat r career prospects; hv heard dat initial salary is very less bout 6k also most jobs r contrct jobs.pls guide me need ur valuable advice.pls hellppp!! thnx..
How can we submit from without a submit button?
How can we enable error reporting in php?
What is the function file_get_contents() useful for?
What is the use of ajax in php?
Explain what does the unlink() function means?
Is key exist in array php?
What’s the difference between htmlentities() and htmlspecialchars()?
What is meant by urlencode and urldecode?