Click here to Skip to main content
15,901,284 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Data Presentation Control Pin
N a v a n e e t h1-Apr-08 22:51
N a v a n e e t h1-Apr-08 22:51 
GeneralProblem with getting JumpyForums working (from articles in code project) Pin
Jacob Dixon1-Apr-08 16:09
Jacob Dixon1-Apr-08 16:09 
GeneralRe: Problem with getting JumpyForums working (from articles in code project) Pin
Jacob Dixon1-Apr-08 16:41
Jacob Dixon1-Apr-08 16:41 
GeneralRe: Problem with getting JumpyForums working (from articles in code project) Pin
N a v a n e e t h1-Apr-08 19:43
N a v a n e e t h1-Apr-08 19:43 
GeneralRe: Problem with getting JumpyForums working (from articles in code project) Pin
Jacob Dixon2-Apr-08 2:49
Jacob Dixon2-Apr-08 2:49 
GeneralRe: Problem with getting JumpyForums working (from articles in code project) Pin
Jacob Dixon2-Apr-08 2:57
Jacob Dixon2-Apr-08 2:57 
GeneralRe: Problem with getting JumpyForums working (from articles in code project) Pin
N a v a n e e t h2-Apr-08 4:23
N a v a n e e t h2-Apr-08 4:23 
GeneralProblem when try export part of web page into word docment application Pin
smr851-Apr-08 16:01
smr851-Apr-08 16:01 
i have a web page and i need to export part of it into word docment,the part i need to export it somthing like datagrid but it is calnder control,i use this code
Response.Clear();
Response.Buffer = true;

Response.AddHeader("content-disposition", "attachment;filename=FileName.doc");

Response.ContentEncoding = System.Text.Encoding.UTF7;
Response.ContentType = "application/vnd.word";
System.IO.StringWriter oStringWriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
this.CalnderControl.RenderControl(oHtmlTextWriter);
Response.Output.Write(oStringWriter.ToString());
Response.Flush();
Response.End();

my problem is how can i modify the properties of that output word docment,as example if i need the output of word docment to be in landscape mode
and the another problem the output of this control is appear fine in the browser it render as html tables with cells but when be exported into word ,there are alot of additional cells appear and the word docment make this cells appear ,however the html output contain the true styles but i think somthing like borders the word couldnot understand it

So Can any one know how to export part of webpage into word docment that i can set some proberties to the output word docment,and make it appear as it appear in the browser??
and what i notic that in the result of that docment that it appear without that addtional cells in the reading outline view but the another views appear with that addtional cells,
GeneralSing out user on session end [modified] Pin
AlexeiXX31-Apr-08 13:23
AlexeiXX31-Apr-08 13:23 
GeneralRe: Sing out user on session end Pin
Rocky#1-Apr-08 20:44
Rocky#1-Apr-08 20:44 
GeneralCustom Control problem in C# Pin
verlinden.nick@telenet.be1-Apr-08 9:55
verlinden.nick@telenet.be1-Apr-08 9:55 
GeneralRe: Custom Control problem in C# Pin
led mike1-Apr-08 10:00
led mike1-Apr-08 10:00 
GeneralRe: Custom Control problem in C# Pin
verlinden.nick@telenet.be1-Apr-08 10:09
verlinden.nick@telenet.be1-Apr-08 10:09 
GeneralRe: Custom Control problem in C# Pin
led mike1-Apr-08 10:53
led mike1-Apr-08 10:53 
GeneralNeed help with Datalist Edit Command Pin
AdamNThompson1-Apr-08 9:12
AdamNThompson1-Apr-08 9:12 
GeneralPerformance of ASP.NET application Pin
hashok1-Apr-08 8:08
hashok1-Apr-08 8:08 
GeneralRe: Performance of ASP.NET application Pin
led mike1-Apr-08 10:02
led mike1-Apr-08 10:02 
QuestionSome TextBox when run takes a yellow back color .. Why? Pin
kindman_nb1-Apr-08 7:37
kindman_nb1-Apr-08 7:37 
AnswerRe: Some TextBox when run takes a yellow back color .. Why? Pin
pmarfleet1-Apr-08 8:09
pmarfleet1-Apr-08 8:09 
GeneralRe: Some TextBox when run takes a yellow back color .. Why? Pin
kindman_nb1-Apr-08 19:40
kindman_nb1-Apr-08 19:40 
GeneralJava Script Prompt Pin
Abhijit Jana1-Apr-08 6:32
professionalAbhijit Jana1-Apr-08 6:32 
GeneralRe: Java Script Prompt Pin
pmarfleet1-Apr-08 8:17
pmarfleet1-Apr-08 8:17 
GeneralSync Outlook Calendar with Web Application Pin
guardianhm1-Apr-08 6:12
guardianhm1-Apr-08 6:12 
GeneralRe: Sync Outlook Calendar with Web Application Pin
Abhijit Jana1-Apr-08 6:27
professionalAbhijit Jana1-Apr-08 6:27 
GeneralRe: Sync Outlook Calendar with Web Application Pin
guardianhm1-Apr-08 22:05
guardianhm1-Apr-08 22:05 

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.