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

ASP.NET

 
QuestionSample master pages Pin
digsy_27-Sep-06 7:38
digsy_27-Sep-06 7:38 
AnswerRe: Sample master pages Pin
minhpc_bk27-Sep-06 19:48
minhpc_bk27-Sep-06 19:48 
QuestionCustom email class Pin
shapper27-Sep-06 7:21
shapper27-Sep-06 7:21 
AnswerRe: Custom email class Pin
Not Active27-Sep-06 8:16
mentorNot Active27-Sep-06 8:16 
AnswerRe: Custom email class Pin
Kschuler27-Sep-06 11:09
Kschuler27-Sep-06 11:09 
QuestionHow can i fix this OleDbException error? Pin
keroed_edmond27-Sep-06 6:57
keroed_edmond27-Sep-06 6:57 
QuestionSend HTML page by Email. Pin
shapper27-Sep-06 6:13
shapper27-Sep-06 6:13 
AnswerRe: Send HTML page by Email. Pin
Jim Conigliaro27-Sep-06 9:55
Jim Conigliaro27-Sep-06 9:55 
Use the page's RenderControl method:

System.Text.StringBuilder builder = new System.Text.StringBuilder();<br />
System.IO.StringWriter writer = new System.IO.StringWriter(builder);<br />
HtmlTextWriter html = new HtmlTextWriter(writer);<br />
RenderControl(html);


This places the page's HTML into the StringBuilder variable, builder. The string can then be set as the body of your email message. Please note, however, that if there are any relative references (such as to a style sheet or an image or a link to another page) you will need to convert them to fully qualified URLS.


QuestionConverting C# Application to WEB Enabled with ASP.NET . Pin
unitecsoft27-Sep-06 5:30
unitecsoft27-Sep-06 5:30 
AnswerRe: Converting C# Application to WEB Enabled with ASP.NET . Pin
Colin Angus Mackay27-Sep-06 5:47
Colin Angus Mackay27-Sep-06 5:47 
GeneralRe: Converting C# Application to WEB Enabled with ASP.NET . Pin
unitecsoft27-Sep-06 7:09
unitecsoft27-Sep-06 7:09 
QuestionHow to play audio and video files in an aspx page Pin
Meax27-Sep-06 5:21
Meax27-Sep-06 5:21 
QuestionHow to use asp:radio button in datagrid without postback and only single selection Pin
BalasahebK27-Sep-06 5:03
BalasahebK27-Sep-06 5:03 
QuestionImage not being displayed in mozila/firefox.. Pin
ArunKumarParthiban27-Sep-06 4:51
ArunKumarParthiban27-Sep-06 4:51 
AnswerRe: Image not being displayed in mozila/firefox.. Pin
minhpc_bk27-Sep-06 19:40
minhpc_bk27-Sep-06 19:40 
GeneralRe: Image not being displayed in mozila/firefox.. Pin
ArunKumarParthiban27-Sep-06 20:46
ArunKumarParthiban27-Sep-06 20:46 
GeneralRe: Image not being displayed in mozila/firefox.. Pin
minhpc_bk28-Sep-06 0:40
minhpc_bk28-Sep-06 0:40 
QuestionHelp with reading XML with C# Pin
robert11027-Sep-06 4:34
robert11027-Sep-06 4:34 
AnswerRe: Help with reading XML with C# Pin
Not Active27-Sep-06 4:43
mentorNot Active27-Sep-06 4:43 
GeneralRe: Help with reading XML with C# Pin
robert11027-Sep-06 4:48
robert11027-Sep-06 4:48 
GeneralRe: Help with reading XML with C# Pin
Not Active27-Sep-06 4:56
mentorNot Active27-Sep-06 4:56 
GeneralRe: Help with reading XML with C# Pin
robert11027-Sep-06 9:36
robert11027-Sep-06 9:36 
GeneralRe: Help with reading XML with C# Pin
robert11027-Sep-06 16:06
robert11027-Sep-06 16:06 
GeneralRe: Help with reading XML with C# Pin
Not Active28-Sep-06 2:15
mentorNot Active28-Sep-06 2:15 
GeneralRe: Help with reading XML with C# Pin
robert11028-Sep-06 8:27
robert11028-Sep-06 8:27 

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.