Forum Moderators: open
i'm about to rename approx. 300 pages that with PR's 3 to 5. would like to have PR transferred to the new pages is possible. i've heard about the 301's and would like to confirm that this: <%Response.Redirect URL%> would be sufficient (asp).
thank you much! :)
v
p.s. I loved the conference! never expected to learn so much :)
<%
Response.Redirect(URL,false)
Response.StatusCode = 301
Response.End()
%>
This code does work but I am typing from memory so make sure you check the casing and the exact property name.
you may also want to look at downloading fidler as it will help you make sure asp.net is doing what you think it is doing.
[fiddlertool.com...]