Re: Http ---> Protocol(XML) ---> Http Content
Date: Wed, 25 Aug 2004 12:58:26 +0200
Shahzad Atta wrote:
> My web server needs to get html source of a web page from a remote web
> server . This html will be rendered to client browser after some processing.
>
> I know it can be done via XMLHTTP object but I am looking towards a .Net
> complaint solution, which is part of default .Net framework.(No third party
> component please).
>
> I am using C# with visual studio 2003 .Net framework 1.1 on windows XP OS.
.NET has HttpWebRequest and WebClient do perform such a task, that is a
HTTP request.
--
Martin Honnen
http://JavaScript.FAQTs.com/
Relevant Pages
- Re: How do I get HTML sent to server?
... looks completed on the client browser. ... If you want the *exactly* HTML sent back to your server, ... archive of the page the way the client sees it with their form data added. ... (comp.lang.javascript) - Re: How do I get HTML sent to server?
... looks completed on the client browser. ... Sending the HTML won't give you that. ... the values and build the structure on the server side. ... Just sending the data back will not work, as the client view may have html ... (comp.lang.javascript) - Re: How to do a post back when user press enter.
... It is hosted on a web server, ... the client browser, which is designed to read and interpret HTML. ... UI, via the event handler. ... (microsoft.public.dotnet.framework.aspnet) - Re: PHP-Yes, HTML-No --- Why?
... The .html signifies that the file contains HTML - and pretty ... A php script contains both HTML and PHP code so technically speaking it's not just HTML. ... The user is getting a file from your web server, an HTML file, and it has an extension of something other than HTML. ... I hope you weren't configuring them as per your personal likes and dislikes but instead were configuring them as per the customer requirements and for speed, ... (comp.lang.php) - Re: PHP-Yes, HTML-No --- Why?
... You are arguing to have ..html at the end of every URL even if the file contains PHP or another scripting language. ... By that very figure you are in the minority and I'd venture to guess the the number of people who really, really care about such trivial things such as yourself is probably closer to .1% in the real population. ... FTP requests are not HTTP. ... The point about MP3 files is that if you configure your web server to treat every file as potentially having dynamic content and that it should search through the entire file looking to determine exactly which language might be in use in the file and hand it off to the appropriate parser, interpreter or module then you are gonna have to contend with the fact that occasionally you're gonna be charging the web server with reading and parsing potentially huge files - all in the name of a foolish consistency. ... (comp.lang.php) |
|