Website on a website.

  • Thread starter Thread starter Shawn
  • Start date Start date
S

Shawn

Does anyone know a way to run a webpage on a webpage like the WebBrowser
control in vb.net?
 
Shawn,
I think if you can be more specific about the goal here, it might be easier
to get constructive responses. You can, for example, use the IFRAME tag to
host a "Webpage" within a web page. Using the WebBrowser control in a web
page, doubt it.
Peter
 
Actually that is just about exactly what I was looking for, but I am having
trouble getting it to change pages. I set the url to a default page, but
want to have different button clicks open different pages. Now the page just
does nothing. Here is the button handler.

function Submit1_onclick() {
ResultFrame.src="Messages.aspx"
}
P.S. In case you haven't figured this out, I have several years experience
with Windows apps, but not web stuff.

Thanks!!!
 
Nevermind, I got it. Thanks for the help!!!

Shawn said:
Actually that is just about exactly what I was looking for, but I am
having trouble getting it to change pages. I set the url to a default
page, but want to have different button clicks open different pages. Now
the page just does nothing. Here is the button handler.

function Submit1_onclick() {
ResultFrame.src="Messages.aspx"
}
P.S. In case you haven't figured this out, I have several years experience
with Windows apps, but not web stuff.

Thanks!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top