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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -