Click here to Skip to main content
16,005,162 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to Implement Barcode in our web appllication Pin
Christian Graus28-Aug-07 21:12
protectorChristian Graus28-Aug-07 21:12 
QuestionHow to custome control are enabled in publish site Pin
puspendra napit28-Aug-07 21:03
puspendra napit28-Aug-07 21:03 
AnswerRe: How to custome control are enabled in publish site Pin
Michael Sync28-Aug-07 21:53
Michael Sync28-Aug-07 21:53 
QuestionBest practice for storing images Pin
Michael Sync28-Aug-07 20:37
Michael Sync28-Aug-07 20:37 
AnswerRe: Best practice for storing images Pin
Christian Graus28-Aug-07 20:51
protectorChristian Graus28-Aug-07 20:51 
GeneralRe: Best practice for storing images Pin
Michael Sync28-Aug-07 21:50
Michael Sync28-Aug-07 21:50 
QuestionHow to add attributes to form tag of master page Pin
Sumithra Guturi28-Aug-07 20:34
Sumithra Guturi28-Aug-07 20:34 
QuestionError when exporting to PDF Pin
samerh28-Aug-07 19:47
samerh28-Aug-07 19:47 
I’m encountering a new kind of problem using Crystal Report for .Net 2005.
If I export a report in a Word or Excel format it works fine but when I set the content type to PDF I get the Adobe PDF splash screen and nothing happens, the content of the web page doesn’t change.

This is a summary of the code I’m currently using (that used to work with CR 8.5):

Dim crExportOptions As ExportOptions
crExportOptions = ExportFileFormats.PDF

Response.ClearContent()
Response.ClearHeaders()

Response.ContentType = "application/pdf"
crExportOptions.FormatOptions = New PdfRtfWordFormatOptions
crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat

Dim req As ExportRequestContext = New ExportRequestContext
req.ExportInfo = crExportOptions

Dim st As System.IO.Stream
st = ReportDocument.FormatEngine.ExportToStream(req) -- (ReportDocument is a crystal reports filled with all the required parms and data. Works with Word and Excel)

Dim b(st.Length) As Byte
st.Read(b, 0, st.Length)
Response.BinaryWrite(b)

Response.End()
QuestionAjax in asp.net Pin
IamAmit28-Aug-07 19:28
IamAmit28-Aug-07 19:28 
AnswerRe: Ajax in asp.net Pin
Imran Khan Pathan28-Aug-07 19:34
Imran Khan Pathan28-Aug-07 19:34 
AnswerRe: Ajax in asp.net Pin
Christian Graus28-Aug-07 20:52
protectorChristian Graus28-Aug-07 20:52 
Questionasp.Net Login Controls Customization Pin
nitpall28-Aug-07 18:08
nitpall28-Aug-07 18:08 
QuestionIs the Repeater control able to handle input? Pin
BillW4228-Aug-07 18:03
BillW4228-Aug-07 18:03 
AnswerRe: Is the Repeater control able to handle input? Pin
Imran Khan Pathan28-Aug-07 19:19
Imran Khan Pathan28-Aug-07 19:19 
QuestionGet Image insted of color Pin
duo!@#28-Aug-07 15:58
duo!@#28-Aug-07 15:58 
AnswerRe: Get Image insted of color Pin
Michael Sync28-Aug-07 19:01
Michael Sync28-Aug-07 19:01 
GeneralRe: Get Image insted of color Pin
duo!@#28-Aug-07 19:51
duo!@#28-Aug-07 19:51 
GeneralXHTML Compliance of ContentPlaceHolder Pin
Ed.Poore28-Aug-07 13:17
Ed.Poore28-Aug-07 13:17 
GeneralRe: XHTML Compliance of ContentPlaceHolder Pin
Michael Sync28-Aug-07 18:52
Michael Sync28-Aug-07 18:52 
Questioncheck if ie browser is running inside winform Pin
algoaddict28-Aug-07 12:00
algoaddict28-Aug-07 12:00 
AnswerRe: check if ie browser is running inside winform Pin
Christian Graus28-Aug-07 12:05
protectorChristian Graus28-Aug-07 12:05 
QuestionRe: check if ie browser is running inside winform Pin
algoaddict28-Aug-07 12:24
algoaddict28-Aug-07 12:24 
AnswerRe: check if ie browser is running inside winform Pin
Christian Graus28-Aug-07 15:16
protectorChristian Graus28-Aug-07 15:16 
QuestionInput CAPS letters in textbox Pin
tjkota28-Aug-07 11:30
tjkota28-Aug-07 11:30 
AnswerRe: Input CAPS letters in textbox Pin
Fred_Smith28-Aug-07 11:35
Fred_Smith28-Aug-07 11:35 

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.