web page editor

nidokidos

New member
Joined
Feb 23, 2005
Messages
2
Programming Experience
Beginner
i m looking for some webpage editor code (in vb.net) , who has a normal view in , as in frotpage and dreamwaver , can any body guide me ????
 
hmmm do you mean a webpage editor that is basically a textbox and a page viewer that shows what is in the textbox? Or are you looking for something more advanced? I can give you the code to do the first part in about 3 hours.
 
requirements

well i have 3 requirements fromthe webpage editor
1) code view
2) normal view ( where user can copy paste things from other files e.g. images formatted text , as i can paste here in this area )
3) preview

where user can see the preview of its work
now i have found many editors with code view and preview , but not with normal view. i dont know how i can make normal view ( please see the normal view in MS frontpage and Macromedia Dreamwaver ) please tell me where i can get the source of such editor so i can make an idea that how this works

i will be very thankful
---------------------------------------------
 
Hmm I'm not sure what you mean by normal view all my php and html projects are done in notepad or editplus.

But for the rest....
VB.NET:
 Dim MyDoc As mshtml.IHTMLDocument

			    If axwebbrowser1.LocationURL = "" Then
				    axwebbrowser1.Navigate2("about:blank")
				End If

				MyDoc = axwebbrowser1.Document
				MyDoc.clear()
				MyDoc.write(Textbox1.Text)
				MyDoc.close()
 
Back
Top