Hi Mahesh,
Thanks for contacting Syncfusion support.
We checked the reported scenario but we were unable to replicate your issue. However, we suggest you to follow the below step to overcome the CORS issue.
Kindly insert this following snippet into your Web.config file of your MVC application.
|
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
<add name="Access-Control-Allow-Headers" value="Content-Type" />
<add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />
</customHeaders>
</httpProtocol>
|
Please get back to us if you need any further assistance.
Regards,
Sharon Sanchez S.