Click here to Skip to main content
16,016,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Madam/Sir,

How to Editable Of WebKitBrowser in C#?

Like- I have open the browser (Means I have used to WebKitBrowser)and type in URL : http://www.codeproject.com/Questions/ask.aspx[^]

Page is open .
Then After I will edit the content of the page and Save another location.
How to implement the above work?
Please reply as soon as possible.

Thanks
Mahendra Kumar Das
Posted

1 solution

Create a div tag inside the form tag of your .aspx file and put all the code written inside the form tag inside this div tag. Now set it's contenteditable property to true.

Code example:
XML
<div id="divMain" contenteditable="true">This text can be edited.<br/>
 <span id="spanBody">This text is written in span. It can also be edited</span>
</div>


Hope this helps you.
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900