> 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(...)
> 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!

Signature
Happy Hacking,
Gaurav Vaish | www.mastergaurav.com
www.edujini-labs.com
http://eduzine.edujini-labs.com
-----------------------------------------
hmchkus - 20 Jun 2007 19:42 GMT
>> How can I integrate part of information from another website on my
>> page?
[quoted text clipped - 4 lines]
>
>Response.Redirect(...)
I used this, but only doing the redirect when user click on the link.
I'll try look into this.
>> 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.