Click here to Skip to main content
15,887,683 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionError:server.mappath Pin
rockram6-Jul-08 21:03
rockram6-Jul-08 21:03 
AnswerRe: Error:server.mappath Pin
Imran Khan Pathan6-Jul-08 21:13
Imran Khan Pathan6-Jul-08 21:13 
AnswerRe: Error:System.IO.FileNotFoundException: Could not find file 'C:\Documents and Settings\Owner\My Documents\Visual Studio 2005\sample\filepath'. Pin
rockram6-Jul-08 21:32
rockram6-Jul-08 21:32 
GeneralRe: Error:System.IO.FileNotFoundException: Could not find file 'C:\Documents and Settings\Owner\My Documents\Visual Studio 2005\sample\filepath'. Pin
eyeseetee6-Jul-08 21:45
eyeseetee6-Jul-08 21:45 
GeneralRe: Error:System.IO.FileNotFoundException: Could not find file 'C:\Documents and Settings\Owner\My Documents\Visual Studio 2005\sample\filepath'. Pin
N a v a n e e t h6-Jul-08 22:25
N a v a n e e t h6-Jul-08 22:25 
QuestionIE6 vs IE7 and Firefox Pin
TheEagle6-Jul-08 20:56
TheEagle6-Jul-08 20:56 
AnswerRe: IE6 vs IE7 and Firefox Pin
eyeseetee6-Jul-08 21:34
eyeseetee6-Jul-08 21:34 
QuestionExport to Excel sheet from Datagrid Pin
Harini N K6-Jul-08 20:56
Harini N K6-Jul-08 20:56 
Need help on exporting to excel from datagrid. (I dont want third party tool). I tried to render the data to HTML as given below:

//first let's clean up the response.object
response.Clear();			
response.ClearContent();
response.ClearHeaders();
response.Buffer = false;

//set the response mime type for excel
response.ContentType = "application/ms-excel";

response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}.xls", StrFileName));
			
//create a string writer
StringWriter stringWrite = new StringWriter();

//create an htmltextwriter which uses the stringwriter
HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);

//instantiate a datagrid
DataGrid dg = new DataGrid();

//set the datagrid datasource to the dataset passed in
dg.DataSource = dr;

//bind the datagrid			
dg.DataBind();

//tell the datagrid to render itself to our htmltextwriter
dg.RenderControl(htmlWrite);

//all that's left is to output the html
response.Write(stringWrite.ToString());
response.End();


It works fine if i edit the file and save. I tried to create new worksheet in the same excel file and saved this changes, new temp folder has been created. (filename_files as like HTML files if you save any web page)

Please let me know how to avoid this?

Harini

Questionquery to find those student names who did not appear in all exams [modified] Pin
Pankaj Garg6-Jul-08 20:35
Pankaj Garg6-Jul-08 20:35 
AnswerRe: query to find those student names who did not appear in all exams Pin
eyeseetee6-Jul-08 21:41
eyeseetee6-Jul-08 21:41 
GeneralRe: query to find those student names who did not appear in all exams Pin
Pankaj Garg6-Jul-08 21:47
Pankaj Garg6-Jul-08 21:47 
GeneralRe: query to find those student names who did not appear in all exams Pin
eyeseetee6-Jul-08 21:53
eyeseetee6-Jul-08 21:53 
GeneralRe: query to find those student names who did not appear in all exams Pin
Pankaj Garg6-Jul-08 21:59
Pankaj Garg6-Jul-08 21:59 
GeneralRe: query to find those student names who did not appear in all exams Pin
eyeseetee6-Jul-08 22:12
eyeseetee6-Jul-08 22:12 
JokeRe: query to find those student names who did not appear in all exams Pin
hogan.john6-Jul-08 22:11
hogan.john6-Jul-08 22:11 
GeneralRe: query to find those student names who did not appear in all exams Pin
eyeseetee6-Jul-08 22:14
eyeseetee6-Jul-08 22:14 
GeneralRe: query to find those student names who did not appear in all exams Pin
hogan.john6-Jul-08 22:19
hogan.john6-Jul-08 22:19 
GeneralRe: query to find those student names who did not appear in all exams Pin
eyeseetee6-Jul-08 22:37
eyeseetee6-Jul-08 22:37 
Questiongrid view insertion Pin
ss20506-Jul-08 20:31
ss20506-Jul-08 20:31 
AnswerRe: grid view insertion Pin
eyeseetee6-Jul-08 21:42
eyeseetee6-Jul-08 21:42 
GeneralRe: grid view insertion Pin
ss20506-Jul-08 21:50
ss20506-Jul-08 21:50 
GeneralRe: grid view insertion Pin
eyeseetee6-Jul-08 21:54
eyeseetee6-Jul-08 21:54 
GeneralRe: grid view insertion Pin
ss20506-Jul-08 21:58
ss20506-Jul-08 21:58 
GeneralRe: grid view insertion Pin
ss20506-Jul-08 23:24
ss20506-Jul-08 23:24 
Questionis java script is dependent on the borwser Pin
vijaylumar6-Jul-08 19:25
vijaylumar6-Jul-08 19:25 

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.