open pdf or othe page link into content page in masterpage

  • Thread starter Thread starter Shailesh Patel
  • Start date Start date
S

Shailesh Patel

Hi,
I like to target link clicked on one contentplaceholder to another
contentplaceholder within one masterpage.
Any suggestion? Please let me know.

Thank you in advance.

Shailesh
 
All you can do is create a named anchor such as <a name="somename"> then
either link to that anchor using the #somename, such as <a
href="default.aspx#somename"> or if you need to do it in codebehind redirect
back to the page and append the anchor name on it like
Response.Redirect("default.aspx#somename"); There's nothing in HTML that
will really let you jump around a page in any other way.
 
A PDF can be displayed in its own window or in a Frame or IFrame. It cannot
be displayed in a contentplaceholder unless that contentplaceholder has an
IFrame in which to display the PDF.
 
Back
Top