Click here to Skip to main content
15,919,358 members

Comments by Abhishek Luv (Top 3 by date)

Abhishek Luv 25-Sep-13 2:23am View    
The textbox value gets posted properly on a radiobutton postback when I don't use this.


<%--<script type="text/javascript">
generate_wysiwyg('ctl00_ContentPlaceHolder1_AddAuctionStep3b_1_richbox');
</script>--%>
Abhishek Luv 23-Sep-13 9:13am View    
I am trying to get the text of the textbox in the Viewstate and then providing it as a parameter to my SP.


ViewState("rich") = richbox.Text.Replace(Request.Url.AbsoluteUri.ToString().Replace("&", "&").Replace("&", "&"), "")

db.AddInParameter(cmd, "@desc", DbType.String, Replace(ViewState("rich"), "'", "''"))
Abhishek Luv 23-Sep-13 6:43am View    
Thanks for your reply. How can I do that. Sample code.I have changed the html textarea to asp.net textbox control