Can i redirect a page into a div using Response.Redirect()?
A:
Whtr u need to display div on the same page or div on the another page? Or u want to display the particular div in a pop-up?
Vishnu K B
2010-10-06 07:17:30
in the same page... inside that an iframe also there
Nithesh
2010-10-06 07:19:03
A:
No, a <div>
exists client side. With a redirect you can only say that the current request should be submitted again at the new address. You can't specify where that redirect should end (frame, iframe, div, window ..).
You will have to do it from the client side: have the div (or whatever) load from some url (which could do a redirect).
Hans Kesting
2010-10-06 07:24:21