Click here to Skip to main content
15,885,141 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Server.MapPath .. just curious? Pin
Blumen3-Aug-08 2:48
Blumen3-Aug-08 2:48 
AnswerRe: Server.MapPath .. just curious? Pin
Guffa3-Aug-08 11:26
Guffa3-Aug-08 11:26 
GeneralRe: Server.MapPath .. just curious? Pin
Blumen3-Aug-08 19:23
Blumen3-Aug-08 19:23 
Questionhow to show report header in a crystal report Pin
Arindam Datta2-Aug-08 20:36
Arindam Datta2-Aug-08 20:36 
AnswerRe: how to show report header in a crystal report Pin
sgsiva6-Jan-10 16:21
sgsiva6-Jan-10 16:21 
QuestionHow i can display the multiple records of reserved vehicle in a single row of table or gridview control Pin
Rameez Raja2-Aug-08 17:17
Rameez Raja2-Aug-08 17:17 
AnswerRe: How i can display the multiple records of reserved vehicle in a single row of table or gridview control Pin
Paul Conrad2-Aug-08 19:04
professionalPaul Conrad2-Aug-08 19:04 
Questionexport in word Pin
meghamaharshi2-Aug-08 2:41
meghamaharshi2-Aug-08 2:41 
Hi..
i want to export content of a page in which i also have a datagrid.my code is as follows:-

Response.Clear();
Response.AddHeader("content-disposition", "attachment;filename=FileName.doc");
Response.Charset = "";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "application/vnd.word";
System.IO.StringWriter stringWrite = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
PrintArea.RenderControl(htmlWrite);
Response.Write(stringWrite.ToString());
Response.End()

file is being saved on desktop but not being opened becoz of proper format...
AnswerRe: export in word Pin
Christian Graus2-Aug-08 12:38
protectorChristian Graus2-Aug-08 12:38 
Questionexporting reports to excel using export property of crystal reports viewer Pin
hyperalergelo2-Aug-08 1:51
hyperalergelo2-Aug-08 1:51 
AnswerRe: exporting reports to excel using export property of crystal reports viewer Pin
hyperalergelo5-Aug-08 1:13
hyperalergelo5-Aug-08 1:13 
Questionmaster page and content form Pin
vijaylumar2-Aug-08 1:26
vijaylumar2-Aug-08 1:26 
AnswerRe: master page and content form Pin
Guffa2-Aug-08 2:35
Guffa2-Aug-08 2:35 
GeneralRe: master page and content form Pin
vijaylumar2-Aug-08 3:01
vijaylumar2-Aug-08 3:01 
GeneralRe: master page and content form Pin
Guffa2-Aug-08 3:24
Guffa2-Aug-08 3:24 
QuestionDayofweek Pin
trilokharry2-Aug-08 1:19
trilokharry2-Aug-08 1:19 
AnswerRe: Dayofweek Pin
Blue_Boy2-Aug-08 1:56
Blue_Boy2-Aug-08 1:56 
AnswerRe: Dayofweek Pin
Christian Graus2-Aug-08 12:39
protectorChristian Graus2-Aug-08 12:39 
QuestionRemote Modification Pin
il_manti2-Aug-08 0:39
il_manti2-Aug-08 0:39 
AnswerRe: Remote Modification Pin
_AK_2-Aug-08 0:44
_AK_2-Aug-08 0:44 
GeneralRe: Remote Modification Pin
il_manti2-Aug-08 1:00
il_manti2-Aug-08 1:00 
GeneralRe: Remote Modification Pin
_AK_2-Aug-08 1:03
_AK_2-Aug-08 1:03 
GeneralRe: Remote Modification Pin
il_manti2-Aug-08 1:05
il_manti2-Aug-08 1:05 
GeneralRe: Remote Modification Pin
_AK_2-Aug-08 1:11
_AK_2-Aug-08 1:11 
Questionis it possible to resize the image at the time of uploading Pin
nileshsaraf2-Aug-08 0:23
nileshsaraf2-Aug-08 0:23 

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.