Click here to Skip to main content
16,004,927 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Timeout Expired error. Pin
ToddHileHoffer3-Jul-07 2:08
ToddHileHoffer3-Jul-07 2:08 
GeneralRe: Timeout Expired error. Pin
Sam.M3-Jul-07 2:19
Sam.M3-Jul-07 2:19 
Questionhelp me Pin
itzmevishu3-Jul-07 1:17
itzmevishu3-Jul-07 1:17 
AnswerRe: help me Pin
ToddHileHoffer3-Jul-07 2:10
ToddHileHoffer3-Jul-07 2:10 
AnswerRe: help me Pin
Sathesh Sakthivel3-Jul-07 2:31
Sathesh Sakthivel3-Jul-07 2:31 
AnswerSince you didn't read the responses LAST time... Pin
leckey3-Jul-07 3:17
leckey3-Jul-07 3:17 
QuestionHow to download file from server database Pin
FishiFishi3-Jul-07 1:12
FishiFishi3-Jul-07 1:12 
AnswerRe: How to download file from server database Pin
Sathesh Sakthivel3-Jul-07 1:16
Sathesh Sakthivel3-Jul-07 1:16 
Try with this code

Private Sub Page_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Response.ContentType = "application\octet-stream"
Dim filename as string=new string("c:\\downloads\\hi.doc")
Dim downloadFile As System.IO.FileStream = New System.IO.FileStream(filename, IO.FileMode.Open)
Response.Write(downloadFile.Length() & "#")
downloadFile.Close()
Response.WriteFile(filename)
Response.Flush()
Response.End()
End Sub



Regards,

Satips.Rose | [Rose]

GeneralRe: How to download file from server database Pin
FishiFishi3-Jul-07 1:34
FishiFishi3-Jul-07 1:34 
GeneralRe: How to download file from server database Pin
saravanan053-Jul-07 1:39
saravanan053-Jul-07 1:39 
QuestionEmail Pin
.NET- India 3-Jul-07 0:59
.NET- India 3-Jul-07 0:59 
AnswerRe: Email Pin
Sathesh Sakthivel3-Jul-07 1:02
Sathesh Sakthivel3-Jul-07 1:02 
GeneralRe: Email Pin
.NET- India 3-Jul-07 1:07
.NET- India 3-Jul-07 1:07 
GeneralRe: Email Pin
Sathesh Sakthivel3-Jul-07 1:12
Sathesh Sakthivel3-Jul-07 1:12 
AnswerTry this one, its working in my app Pin
FishiFishi3-Jul-07 1:16
FishiFishi3-Jul-07 1:16 
GeneralRe: Try this one, its working in my app Pin
.NET- India 3-Jul-07 1:23
.NET- India 3-Jul-07 1:23 
GeneralRe: Try this one, its working in my app Pin
FishiFishi3-Jul-07 1:30
FishiFishi3-Jul-07 1:30 
GeneralRe: Try this one, its working in my app Pin
FishiFishi3-Jul-07 1:30
FishiFishi3-Jul-07 1:30 
GeneralRe: Try this one, its working in my app Pin
.NET- India 3-Jul-07 1:35
.NET- India 3-Jul-07 1:35 
GeneralRe: Try this one, its working in my app Pin
FishiFishi3-Jul-07 1:44
FishiFishi3-Jul-07 1:44 
QuestionSMTP Server Pin
.NET- India 3-Jul-07 0:42
.NET- India 3-Jul-07 0:42 
AnswerRe: SMTP Server Pin
Sandeep Akhare3-Jul-07 0:46
Sandeep Akhare3-Jul-07 0:46 
GeneralRe: SMTP Server Pin
.NET- India 3-Jul-07 0:48
.NET- India 3-Jul-07 0:48 
GeneralRe: SMTP Server Pin
Sandeep Akhare3-Jul-07 0:50
Sandeep Akhare3-Jul-07 0:50 
AnswerRe: SMTP Server Pin
Sathesh Sakthivel3-Jul-07 0:47
Sathesh Sakthivel3-Jul-07 0: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.