Click here to Skip to main content
15,917,565 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Datalist control Pin
Vijayitsb20-Nov-07 22:57
Vijayitsb20-Nov-07 22:57 
GeneralRe: Datalist control Pin
N a v a n e e t h20-Nov-07 23:08
N a v a n e e t h20-Nov-07 23:08 
AnswerRe: Datalist control Pin
Sun Rays20-Nov-07 22:49
Sun Rays20-Nov-07 22:49 
AnswerRe: Datalist control Pin
John-ph20-Nov-07 22:54
John-ph20-Nov-07 22:54 
AnswerRe: Datalist control Pin
Sun Rays20-Nov-07 23:08
Sun Rays20-Nov-07 23:08 
AnswerRe: Datalist control Pin
Prateek G20-Nov-07 23:18
Prateek G20-Nov-07 23:18 
GeneralRe: Datalist control Pin
Vijayitsb21-Nov-07 1:29
Vijayitsb21-Nov-07 1:29 
Questionplease tell how to work with download accelerator plus with asp.net Pin
lakshmichawala20-Nov-07 22:45
lakshmichawala20-Nov-07 22:45 
the problem is that i used the following code to download a file from server to the client machine....


Dim strFileName As String = "createuser.tif" ' it is the file in server
Dim fs As System.IO.FileStream = Nothing
fs = System.IO.File.Open(Server.MapPath(strFileName), System.IO.FileMode.Open)
Dim btFile(fs.Length) As Byte
fs.Read(btFile, 0, fs.Length)
fs.Close()
With Response
.AddHeader("Content-disposition", "attachment;filename=" & strFileName)
.ContentType = "application/octet-stream"
.BinaryWrite(btFile)
.End()
End With


it has worked fine promting a message where to save the tif file ...but when i downloaded download Accelerator Plus and running the asp.net application instead of getting the tif file iam getting default.aspx page of the application how this problem is solved

AnswerRe: please tell how to work with download accelerator plus with asp.net Pin
Malcolm Smart20-Nov-07 22:58
Malcolm Smart20-Nov-07 22:58 
Question[Message Deleted] Pin
SreejithAchutan20-Nov-07 22:37
SreejithAchutan20-Nov-07 22:37 
AnswerAvoid Postback Pin
SreejithAchutan20-Nov-07 22:54
SreejithAchutan20-Nov-07 22:54 
GeneralRe: Avoid Postback Pin
Malcolm Smart20-Nov-07 22:59
Malcolm Smart20-Nov-07 22:59 
AnswerRe: Avoid Postback Pin
Prateek G20-Nov-07 23:12
Prateek G20-Nov-07 23:12 
GeneralAvoid Postback Pin
SreejithAchutan20-Nov-07 23:40
SreejithAchutan20-Nov-07 23:40 
GeneralRe: Avoid Postback Pin
SreejithAchutan20-Nov-07 23:58
SreejithAchutan20-Nov-07 23:58 
QuestionIssue with Dynamic Updates for ModalPopupExtender Pin
Andrew_Thomas20-Nov-07 22:36
Andrew_Thomas20-Nov-07 22:36 
QuestionRe: Issue with Dynamic Updates for ModalPopupExtender Pin
Andrew_Thomas21-Nov-07 6:44
Andrew_Thomas21-Nov-07 6:44 
Questionevent Pin
Sonia Gupta20-Nov-07 22:22
Sonia Gupta20-Nov-07 22:22 
JokeRe: event Pin
N a v a n e e t h20-Nov-07 22:27
N a v a n e e t h20-Nov-07 22:27 
AnswerRe: event Pin
Sun Rays20-Nov-07 22:28
Sun Rays20-Nov-07 22:28 
AnswerRe: event Pin
J4amieC20-Nov-07 22:31
J4amieC20-Nov-07 22:31 
GeneralRe: event Pin
N a v a n e e t h20-Nov-07 22:37
N a v a n e e t h20-Nov-07 22:37 
GeneralRe: event Pin
Malcolm Smart20-Nov-07 22:56
Malcolm Smart20-Nov-07 22:56 
Questionhow can i check my point in my site Pin
Rajeshwar Code- Developer20-Nov-07 22:22
Rajeshwar Code- Developer20-Nov-07 22:22 
AnswerRe: how can i check my point in my site Pin
Sun Rays20-Nov-07 22:26
Sun Rays20-Nov-07 22:26 

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.