jquery - How to get value from text area which connected with a plugin in C# asp.net -
i using text area connected plugin, unable access value it.
<div class="form-group"> <label class="control-label">type message</label> <div class="notewrap"> <div class="form-group"> <textarea class="summernote" id="message" name="message" placeholder="write note here..."></textarea> </div> </div> </div>
i getting error on code rc.msg_message = request.form["message"];
(msg_message declared string).error message says :
{"a potentially dangerous request.form value detected client (message=."}
how data textarea on c# code behind page along style added plugin?
for need text, how can check data image or not?
Comments
Post a Comment