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> 

enter image description here

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

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

Python Tornado package error when running server -