Click here to Skip to main content
15,914,416 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to execute a javascript after a post back event occured?? Pin
SIJUTHOMASP18-Apr-06 20:58
professionalSIJUTHOMASP18-Apr-06 20:58 
GeneralRe: How to execute a javascript after a post back event occured?? Pin
enjoycrack18-Apr-06 21:20
enjoycrack18-Apr-06 21:20 
AnswerRe: How to execute a javascript after a post back event occured?? Pin
Arvind B18-Apr-06 21:43
Arvind B18-Apr-06 21:43 
QuestionRe: How to execute a javascript after a post back event occured?? Pin
SIJUTHOMASP18-Apr-06 22:33
professionalSIJUTHOMASP18-Apr-06 22:33 
AnswerRe: How to execute a javascript after a post back event occured?? Pin
Guffa18-Apr-06 23:14
Guffa18-Apr-06 23:14 
GeneralRe: How to execute a javascript after a post back event occured?? Pin
SIJUTHOMASP20-Apr-06 4:31
professionalSIJUTHOMASP20-Apr-06 4:31 
QuestionCrystal Report in PDF Pin
Jmshastri18-Apr-06 19:06
Jmshastri18-Apr-06 19:06 
AnswerRe: Crystal Report in PDF Pin
jitendra gupta18-Apr-06 22:56
jitendra gupta18-Apr-06 22:56 
hi i am sending u some code please replace your button code from my code

code is :


Dim ms As MemoryStream
ms = CType(report.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat), System.IO.MemoryStream)
Response.ClearHeaders
Response.Clear
Response.Buffer = True
Response.ContentType = "application/pdf"
Try
Response.BinaryWrite(ms.ToArray)
Dim filename As String = "c:\inetpub\wwwroot\jitu.pdf"
report.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, filename)
Response.End
Catch err As Exception
Response.Write("< BR >")
Response.Write(err.Message.ToString)
End Try

bye
GeneralRe: Crystal Report in PDF Pin
Jmshastri18-Apr-06 23:28
Jmshastri18-Apr-06 23:28 
QuestionUnable To Validate Data error.............. Pin
Nagraj Naik18-Apr-06 18:51
Nagraj Naik18-Apr-06 18:51 
AnswerRe: Unable To Validate Data error.............. Pin
chakkara200320-Apr-06 23:39
chakkara200320-Apr-06 23:39 
QuestionNot using asp login in Login Control Pin
2hdass18-Apr-06 18:48
2hdass18-Apr-06 18:48 
AnswerRe: Not using asp login in Login Control Pin
Mike Ellison18-Apr-06 18:57
Mike Ellison18-Apr-06 18:57 
QuestionFill datagrid with javascript ???????? Pin
phucuong27318-Apr-06 18:35
phucuong27318-Apr-06 18:35 
QuestionLogin Control, and AES encrption for mySQL Pin
2hdass18-Apr-06 16:04
2hdass18-Apr-06 16:04 
AnswerRe: Login Control, and AES encrption for mySQL Pin
minhpc_bk18-Apr-06 16:39
minhpc_bk18-Apr-06 16:39 
QuestionParser Error Could Not load Type (HELP ME) Pin
kourvoisier18-Apr-06 10:30
kourvoisier18-Apr-06 10:30 
AnswerRe: Parser Error Could Not load Type (HELP ME) Pin
Guffa18-Apr-06 11:17
Guffa18-Apr-06 11:17 
GeneralRe: Parser Error Could Not load Type (HELP ME) Pin
kourvoisier18-Apr-06 11:34
kourvoisier18-Apr-06 11:34 
AnswerRe: Parser Error Could Not load Type (HELP ME) Pin
minhpc_bk18-Apr-06 18:32
minhpc_bk18-Apr-06 18:32 
GeneralRe: Parser Error Could Not load Type (HELP ME) Pin
kourvoisier24-Apr-06 3:51
kourvoisier24-Apr-06 3:51 
QuestionASP.NET Resume Builder needed. Pin
dibblm-Ohio18-Apr-06 10:00
dibblm-Ohio18-Apr-06 10:00 
AnswerRe: ASP.NET Resume Builder needed. Pin
Mike Ellison18-Apr-06 10:51
Mike Ellison18-Apr-06 10:51 
QuestionHolding your scroll position after postback without SmartNavigation Pin
Richard Parsons18-Apr-06 9:57
Richard Parsons18-Apr-06 9:57 
AnswerRe: Holding your scroll position after postback without SmartNavigation Pin
Mike Ellison18-Apr-06 10:47
Mike Ellison18-Apr-06 10:47 

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.