Click here to Skip to main content
15,915,600 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Setting TextBox.MaxLength Pin
dptalt2-Apr-09 2:49
dptalt2-Apr-09 2:49 
GeneralRe: Setting TextBox.MaxLength Pin
fred_2-Apr-09 3:06
fred_2-Apr-09 3:06 
GeneralRe: Setting TextBox.MaxLength Pin
dptalt2-Apr-09 3:42
dptalt2-Apr-09 3:42 
Questionrender usercontrol in literal Pin
keyur satyadev1-Apr-09 3:54
keyur satyadev1-Apr-09 3:54 
Questioncustomizing an external playback control(express scribe) using asp.net in c# Pin
Member 39231611-Apr-09 3:47
Member 39231611-Apr-09 3:47 
AnswerRe: customizing an external playback control(express scribe) using asp.net in c# Pin
Abhijit Jana1-Apr-09 18:19
professionalAbhijit Jana1-Apr-09 18:19 
QuestionError while using Sub reports in Report Viewer Pin
tauras811-Apr-09 3:03
tauras811-Apr-09 3:03 
QuestionExport to RTF in 2003 vs 2007 Pin
samerh1-Apr-09 2:28
samerh1-Apr-09 2:28 
Hi allm
i am exporting a table to RTF using the following code
Public Shared Sub ExportGridToExcel(ByVal report As Control, ByVal exportType As Integer, ByVal ReportType As String)
            Select Case exportType
                Case Enums.ExportOptions.RTF
                    HttpContext.Current.Response.ContentType = "application/RTF"
                    HttpContext.Current.Response.AppendHeader("content-disposition", "inline;filename=GeneralReports.rtf")
               End Select
            Dim tw As New System.IO.StringWriter
            Dim hw As New System.Web.UI.HtmlTextWriter(tw)

            report.RenderControl(hw)
            HttpContext.Current.Response.Write(tw.ToString())
            HttpContext.Current.Response.End()
            HttpContext.Current.Response.Flush()
            tw.Close()
            hw.Close()
            tw.Dispose()
            hw.Dispose()
        End Sub


When opeenning the report in office 2003 the borders of tables and rows appear while the same report when opeened in office 2007 no borders appear. Any advice? Thanks
QuestionGridView Row Height Problem.. Pin
Sr...Frank1-Apr-09 2:24
Sr...Frank1-Apr-09 2:24 
AnswerRe: GridView Row Height Problem.. Pin
ToddHileHoffer1-Apr-09 2:50
ToddHileHoffer1-Apr-09 2:50 
GeneralRe: GridView Row Height Problem.. Pin
Sr...Frank1-Apr-09 4:17
Sr...Frank1-Apr-09 4:17 
GeneralRe: GridView Row Height Problem.. Pin
ToddHileHoffer1-Apr-09 5:20
ToddHileHoffer1-Apr-09 5:20 
GeneralRe: GridView Row Height Problem.. Pin
Sr...Frank1-Apr-09 9:37
Sr...Frank1-Apr-09 9:37 
AnswerRe: GridView Row Height Problem.. Pin
kumar_k5081-Apr-09 3:10
kumar_k5081-Apr-09 3:10 
GeneralRe: GridView Row Height Problem.. Pin
Sr...Frank1-Apr-09 4:15
Sr...Frank1-Apr-09 4:15 
AnswerRe: GridView Row Height Problem.. Pin
vishnukamath6-Jan-10 19:41
vishnukamath6-Jan-10 19:41 
QuestionMsgBox in ASP.NET 1.1 Pin
bishwambhar_sen1-Apr-09 2:17
bishwambhar_sen1-Apr-09 2:17 
AnswerRe: MsgBox in ASP.NET 1.1 Pin
ToddHileHoffer1-Apr-09 2:47
ToddHileHoffer1-Apr-09 2:47 
AnswerRe: MsgBox in ASP.NET 1.1 Pin
Dev S1-Apr-09 2:47
Dev S1-Apr-09 2:47 
AnswerRe: MsgBox in ASP.NET 1.1 Pin
CaptainJackSparrow1-Apr-09 12:08
CaptainJackSparrow1-Apr-09 12:08 
GeneralRe: MsgBox in ASP.NET 1.1 Pin
archit300020-Apr-09 19:13
archit300020-Apr-09 19:13 
QuestionBold the text of the LinkButton,which is clicked, in DatList Pin
.NET- India 1-Apr-09 2:15
.NET- India 1-Apr-09 2:15 
AnswerRe: Bold the text of the LinkButton,which is clicked, in DatList Pin
Dev S1-Apr-09 3:01
Dev S1-Apr-09 3:01 
QuestionCode to Create Pages and assign Masterpages programmatically for my Content Management System Pin
Adam.wanted1-Apr-09 2:04
Adam.wanted1-Apr-09 2:04 
AnswerRe: Code to Create Pages and assign Masterpages programmatically for my Content Management System Pin
Dev S1-Apr-09 2:07
Dev S1-Apr-09 2:07 

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.