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
--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"kishor" <kishor@.discussions.microsoft.com> wrote in message
news:230BA039-E6C7-4FDE-95FF-FBEF76FFE7F6@.microsoft.com...
> 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.
0 comments:
Post a Comment