I\'m using ozeki ng SMS gateway. I\'m unable to send any SMS to any mobile. Please help me to send SMS through net to mobile
A potentially dangerous Request.Form v
Your problem is that the value of one of your fields (textboxError) includes XML- or HTML-style tags, which by default are disallowed to avoid developers introducing potential security issues within their applications.
The solution is given in the error message; you need to add
[HttpPost]
[ValidateInput(false)]
In Controller