Click here to Skip to main content
15,915,336 members

Comments by Prutal (Top 4 by date)

Prutal 19-Dec-13 14:36pm View    
so what is the answer, what will the expression be ?
Prutal 19-Dec-13 14:19pm View    
lets say that i am the user and i want to get all the users that i sent them a friend request and they accept the request what will the expression be if the the above one does not get the wanted result (i cant understand the result that is retrived)
Prutal 19-Dec-13 12:32pm View    
the result of the above query is not what i want so how i can get all the friends of a user
Prutal 3-Dec-13 3:50am View    
after the whole day reading and searching, i reach to a conclusion that:
the concept of url rewriting is to route the url or to rewrite the url in the request to the real page.

example:
<pre> <a href="http://www.example.com/something"></a></pre>

when this link is clicked the Application_BeginRequest in the global.asax will handle the Request.URL and rewrite it to "http://www.example.com/something_else.aspx" or any other real page in the site that have a meaning to the server to render it, also the url could contain a query string parameters, so they should be included in both real url and virtual url(example
virtual: "http://www.example.com/something/12"
real: "http://www.example.com/something_else.aspx?"

).

will this is cool, but in my case the scenario is that, i have all the site running, if i want to change all the links in the site will be a very tedious work.

any suggestion