Redirecting Frames

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • snowdrop
    New Member
    • Mar 2008
    • 2

    Redirecting Frames

    Hello,
    I am working ASP with C#.

    I want to open a webpage in Frame2 by clicking a button in Frame1 ...
    Can it be?
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    you can't write ASP with C#. ASP is written with VBScript (JSP is the same thing but written with JScript). You are probably using ASP.NET. I'd move you over to the .NET forum, but this is actually an HTML issue:

    Code:
    target="frameName"
    usage:[code=html]<a href="pageForFr ame2.aspx" target="frame2" >Click here for details</a>[/code]Hopes this helps.

    Jared

    Comment

    Working...