Tagged Questions
0
votes
0answers
257 views
How to open pdf in browser tab from ajax call asp.net mvc
I have my controller action method returning pdf file as
public FileContentResult GetPDF(string filename)
{FileContentResult filecontent= new FileContentResult(Contents, "application/pdf");
...
0
votes
0answers
155 views
how to make ajax call within jquery success function (asp.net mvc)
I used jquery form plugin to upload and it worked fine, for suppose i want to delete the uploaded file, again i need to make a call to controller and update view again ? in success function of this ...
0
votes
1answer
328 views
Forms Issue Cross-Domain Posting to MVC Controller using JQuery
I have a very strange issue on my hands.
I have two IIS websites using host headers.
I have some simple code using JQuery and JQuery.forms to post a simple form to a controller. The controller ...