Panel Question

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

Guest

Hi,
In an aspx page I have used Panel. And for that panel I have added some
attribute so that user can input some text. Code is given here

editpn.Attributes["contenteditable"]="true";
editpn.Style.Add("overflow" , "auto");
editpn.Style.Add("background-color","window");
editpn.Style.Add("font-family","Arial");

My problem is that how do I get a internal text entered by user at server
side.

Editpn is a panel.

Regards,
Kishor.
 
On submit you'll need to copy the text to a hidden input (via javascript)
and use Request.Form

Karl
 

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