Edit and deploy an HTML file

megnin

New member
Joined
Dec 16, 2006
Messages
3
Location
Fort Lauderdale
Programming Experience
Beginner
I'm brand new to VB.Net.
I'm tring to make a tool for staff to edit the html file for their Outlook Signature. I'm using VS 2005 and have created a Windows Form utility.
My problems is editing the html file. I tried assiging the whole file to a string variable, but the Visual Studio IDE kept putting quotes around the first <HTML> tag in the file.

I want the tool to ultimately save the html file to the users ../Signatures folder. What's the best way to allow an html file to be edited and then written out to a file. How do I store the html file in my .vb app?

Thanks for any help.
David Megnin
VB.Net beginner
 
read the html file in as plain text into a textbox, then write the contents of the textbox to the file as plain text
 
Thank you for the reply.

I figured out what the trouble was with a variable accepting the HTML.

I needed to double quote arguments in quotes like <font size=""3"">

I was then able to do everything with the string.
 
Back
Top