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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -