Click here to Skip to main content
15,884,298 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to save HTML Table to database Pin
User 418025418-Jun-17 14:45
User 418025418-Jun-17 14:45 
AnswerRe: How to save HTML Table to database Pin
John C Rayan19-Jun-17 3:23
professionalJohn C Rayan19-Jun-17 3:23 
QuestionHtml helper in c# mvc app Pin
e$heldon17-Jun-17 15:10
e$heldon17-Jun-17 15:10 
AnswerRe: Html helper in c# mvc app Pin
User 418025418-Jun-17 14:47
User 418025418-Jun-17 14:47 
GeneralRe: Html helper in c# mvc app Pin
e$heldon19-Jun-17 9:10
e$heldon19-Jun-17 9:10 
AnswerRe: Html helper in c# mvc app Pin
John C Rayan19-Jun-17 3:26
professionalJohn C Rayan19-Jun-17 3:26 
GeneralRe: Html helper in c# mvc app Pin
e$heldon19-Jun-17 9:13
e$heldon19-Jun-17 9:13 
QuestionCall Default View From Controller Pin
Kevin Marois16-Jun-17 7:57
professionalKevin Marois16-Jun-17 7:57 
I am VERY new to Asp.Net, so bear with my ignorance.

I added an Export button to a page:
<input type="button" value="Export" onclick="location.href='@Url.Action("Export", "Home")'" />
In the controller I added
public ActionResult Export()
{
    var data = _dal.GetDashboardInfos(new DashboardInfoQueryArgs());
    var d = data.ToList().ToCsv();

    var path = Path.GetTempPath();
    var fileData = string.Format("{0}ardexport.csv", path);

    using (StreamWriter sw = new StreamWriter(fileData, false))
    {
        sw.WriteLine(d);
    }

    Process.Start(fileData);

    return View("Index", "Home");
}

The CSV open fine, then I get a page load error:
The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:
.
.
.

After the export I would really like to NOT reload (no reason to), or, at the very least just reload the default page.

What I doing wrong here?

Thanks
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Call Default View From Controller Pin
Richard Deeming16-Jun-17 8:40
mveRichard Deeming16-Jun-17 8:40 
GeneralRe: Call Default View From Controller Pin
Kevin Marois16-Jun-17 9:14
professionalKevin Marois16-Jun-17 9:14 
GeneralRe: Call Default View From Controller Pin
Kevin Marois19-Jun-17 4:03
professionalKevin Marois19-Jun-17 4:03 
QuestionTrying to save some values from html to Database by using the WebApi HttpPost method Pin
indian14316-Jun-17 7:53
indian14316-Jun-17 7:53 
AnswerRe: Trying to save some values from html to Database by using the WebApi HttpPost method Pin
Richard Deeming16-Jun-17 8:30
mveRichard Deeming16-Jun-17 8:30 
GeneralRe: Trying to save some values from html to Database by using the WebApi HttpPost method Pin
indian14319-Jun-17 9:56
indian14319-Jun-17 9:56 
GeneralRe: Trying to save some values from html to Database by using the WebApi HttpPost method Pin
Richard Deeming19-Jun-17 11:37
mveRichard Deeming19-Jun-17 11:37 
QuestionRegarding querystring Pin
Member 1324809013-Jun-17 1:17
Member 1324809013-Jun-17 1:17 
SuggestionRe: Regarding querystring Pin
Richard MacCutchan13-Jun-17 5:07
mveRichard MacCutchan13-Jun-17 5:07 
AnswerRe: Regarding querystring Pin
ZurdoDev15-Jun-17 2:56
professionalZurdoDev15-Jun-17 2:56 
AnswerRe: Regarding querystring Pin
John C Rayan19-Jun-17 3:34
professionalJohn C Rayan19-Jun-17 3:34 
QuestionLock down the URL of an application for single device Pin
Schatak12-Jun-17 22:14
professionalSchatak12-Jun-17 22:14 
AnswerRe: Lock down the URL of an application for single device Pin
Afzaal Ahmad Zeeshan12-Jun-17 22:58
professionalAfzaal Ahmad Zeeshan12-Jun-17 22:58 
AnswerRe: Lock down the URL of an application for single device Pin
Deepak Vasudevan15-Jun-17 0:52
Deepak Vasudevan15-Jun-17 0:52 
GeneralRe: Lock down the URL of an application for single device Pin
Richard Deeming15-Jun-17 1:45
mveRichard Deeming15-Jun-17 1:45 
QuestionProgramatically click a button using http POST request Pin
Prasadaknair10-Jun-17 8:15
Prasadaknair10-Jun-17 8:15 
Answer[Repost] Programatically click a button using http POST request Pin
Richard MacCutchan10-Jun-17 9:16
mveRichard MacCutchan10-Jun-17 9:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.