Html documents

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Actually my assignment is to write documents in html. Do you know any
software which is on line so that I can download and write documents in html.

Thanks
 
seema said:
Actually my assignment is to write documents in html. Do you know any
software which is on line so that I can download and write documents in html.

This has nothing at all to do with C# or .NET. However, you might want
to try notepad.exe. It's already installed on your Windows computer and
it works fine.

Pete
 
seema,

Well, all ASP.NET does is write HTML, if you think about it. But what
is HTML? HTML is nothing more than a big long string. There is nothing
stopping your program from just creating a StringBuilder and building the
HTML programatically.

As for downloading the HTML, you will want to look at the HttpWebRequest
and HttpWebResponse classes in the System.Net namespace.
 
Hi,

Actually my assignment is to write documents in html. Do you know any
software which is on line so that I can download and write documents in html.

Thanks
Your web browser will download HTML documents.

If you want an HTML editor then try 1st Page from
http://www.evrsoft.com/

Nicholas has given you advice on how to create HTML programatically.

rossum
 

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