ASP.NET postbacks creates issue in URL rewriting?

I am using Intelligencia for url rewriting in my asp.net project.

I have solved many issues by doing R & D for url rewriting but right now i stuck with one issue regarding page postback.

page postback change my rewrite url to original url.

SO, anyone help me to get out from here.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

You can code this in your master page for this problem

Here form1 is the form tag and place it in master page’s load event

  protected void Page_Load(object sender, EventArgs e)
    {
        form1.Action = Request.RawUrl;
    }

Method 2

You’ll probably need to use a custom From control to handle the re-written URLs, there’s an excellent blog from Scott Gu on the subject here:

http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx

It should be a good starting point.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x