Search Results

0
votes
4answers
571 views

ASP.NET stream content from memory and not from file

The users have requested the option to "download" a csv file representation of GridView contents. Does anyone know how to do this without saving the file to the server but rather just streaming it …
0
votes
3answers
955 views

jQuery calls in external js file with MasterPages

I am using ASP.NET 3.5 with MasterPages. My master page has the script references to jquery and jquery UI. My web page that uses the master page has a script reference for a custom javascript fil …
0
votes

ASP.NET stream content from memory and not from file

I created a StringBuilder and dump the contents to the Response object using the following code ("csv" is the StringBuilder variable). Response.ContentType = @"application/x-msdown …
1
vote

jQuery calls in external js file with MasterPages

I want to thank everyone for their suggestions but I made a "bone-headed" mistake. The tags were mistakenly still in the external js file. Once removed, everything works as expected. I apologiz …