Dynamic Content

  • Thread starter Thread starter allen
  • Start date Start date
A

allen

I need to be able to stream dynamic html content based on a request embeded
in a client's html.

For example: I have a client who will be given a uniquie URL based on his
assigned "team". The URL could look like this:
http://www.mysite.com/server/teamstate.aspx?teamid=1393. The client would
copy this URL into one of his html pages. Based on some server side
processing on mysite.com, I want to stream dynamic HTML content back to the
requestor's browser. The HTML will consist of an Image wrapped with a Link,
something like this:
<a href="http://www.mysite.com/server/start.aspx"><img
src="http://www.mysite.com/images/start.gif" border="0"></a>

Anyone have any ideas? Any links to examples?

Thanks,
Todd
 
Todd,
Here's a thought:
try creating a custom web control
get the user to enter the URL in a property say DataURL
one your webcontrol code... create and instance of WebClient which would
make a call to the passed URL (put a check to see if its a valid one...)
and once you response from webClient... parse it and get your data

Hope this helps,

HD
 
Back
Top