Board index » Web Programming » Integrate webpage from another website to my asp.net 2.0 page.

Integrate webpage from another website to my asp.net 2.0 page.

Web Programming383
Hi,



How can I integrate part of information from another website on my

page?

For example, a table of schedule, weather, stock info...



I would like to know both way:

1. redirect the client browser to another site

2. serve content through my website.



Is there examples, and book talk about this? Thanks!!


-
 

Re:Integrate webpage from another website to my asp.net 2.0 page.

Quote
How can I integrate part of information from another website on my

page?

For example, a table of schedule, weather, stock info...



I would like to know both way:

1. redirect the client browser to another site



Response.Redirect(...)



Quote
2. serve content through my website.



Does "Through my website" mean "to another website"?

Publish Web-Service(s) on your website and let the other guy consume them!





--

Happy Hacking,

Gaurav Vaish | www.mastergaurav.com

www.edujini-labs.com

eduzine.edujini-labs.com">eduzine.edujini-labs.com

-----------------------------------------





-

Re:Integrate webpage from another website to my asp.net 2.0 page.



Quote
>How can I integrate part of information from another website on my

>page?

>For example, a table of schedule, weather, stock info...

>

>I would like to know both way:

>1. redirect the client browser to another site



Response.Redirect(...)

I used this, but only doing the redirect when user click on the link.

I'll try look into this.



Quote


>2. serve content through my website.



Does "Through my website" mean "to another website"?

Publish Web-Service(s) on your website and let the other guy consume them!



I want the client browser to only make request to my web server, and

get content say from yahoo. Don't want them to make a seperate request

to yahoo directly.

-