Is a redirect less efficient than returning other types of result? I ask because if my current request is asynchronous I want to return a partial with only relevant data. Otherwise I need to render the entire page. So I'm thinking of returning a redirect to an action method which will return a View. My understanding is that a redirect will respond to the browser instructing it to request the new url. This effectively means 2 requests. Is the overhead substantial? Is this bad practice? What will this mean in terms of SEO?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

a redirect will respond to the browser instructing it to request the new url. This effectively means 2 requests.

Correct.

Is the overhead substantial?

Well... it's two requests.

Is this bad practice?

No. It's required after a POST is processed.

http://en.wikipedia.org/wiki/Post/Redirect/Get

What will this mean in terms of SEO?

Depends on whether or not your URI's make sense in the first place.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.