Click here to Skip to main content
15,890,336 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to make datagrid searchable? Pin
joemonvarghese18-Nov-07 21:57
joemonvarghese18-Nov-07 21:57 
GeneralRe: How to make datagrid searchable? Pin
N a v a n e e t h18-Nov-07 22:10
N a v a n e e t h18-Nov-07 22:10 
Questionhow i can down load a file from server to a client machine Pin
jagan12318-Nov-07 19:07
jagan12318-Nov-07 19:07 
AnswerRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 19:16
Prateek G18-Nov-07 19:16 
GeneralRe: how i can down load a file from server to a client machine Pin
N a v a n e e t h18-Nov-07 19:18
N a v a n e e t h18-Nov-07 19:18 
GeneralRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 19:26
Prateek G18-Nov-07 19:26 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 19:35
jagan12318-Nov-07 19:35 
GeneralRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 19:55
Prateek G18-Nov-07 19:55 
Try something like this...

<br />
 string sourceFile = "abc.tif";// Fully specified path<br />
       <br />
 <br />
         FileInputStream filIpStrm = null;<br />
         MemoryStream ms = new MemoryStream();<br />
         filIpStrm = new FileInputStream(sourceFile);<br />
         sbyte[] buffer =  new sbyte[1024];<br />
         int len = 0;<br />
         while ((len = filIpStrm.read(buffer)) >= 0)<br />
          {<br />
              byte[] bbuffer = new byte[1024];<br />
              System.Buffer.BlockCopy(buffer,0,bbuffer,0,1024);<br />
             <br />
              ms.Write(bbuffer,0,1024);<br />
          }<br />
          Response.OutputStream.Write(ms.ToArray(), 0, Convert.ToInt32(ms.Length));<br />
          <br />
         filIpStrm.close(); <br />
        Response.ClearContent();<br />
        Response.ClearHeaders();<br />
        Response.ContentType = "application/octet-stream";<br />
        Response.AppendHeader("Content-Disposition", "attachment; filename=AAA.tif");<br />
        Response.Flush();<br />



Just check how can you access the file like I have written directly Source file name, just check how can you get your file in byte[]....
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 20:06
jagan12318-Nov-07 20:06 
GeneralRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 20:13
Prateek G18-Nov-07 20:13 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 20:16
jagan12318-Nov-07 20:16 
GeneralRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 20:24
Prateek G18-Nov-07 20:24 
GeneralRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 20:19
Prateek G18-Nov-07 20:19 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 20:39
jagan12318-Nov-07 20:39 
GeneralRe: how i can down load a file from server to a client machine Pin
Prateek G18-Nov-07 23:02
Prateek G18-Nov-07 23:02 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12319-Nov-07 1:14
jagan12319-Nov-07 1:14 
AnswerRe: how i can down load a file from server to a client machine Pin
N a v a n e e t h18-Nov-07 19:17
N a v a n e e t h18-Nov-07 19:17 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 19:42
jagan12318-Nov-07 19:42 
GeneralRe: how i can down load a file from server to a client machine Pin
N a v a n e e t h18-Nov-07 19:47
N a v a n e e t h18-Nov-07 19:47 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 20:03
jagan12318-Nov-07 20:03 
GeneralRe: how i can down load a file from server to a client machine Pin
N a v a n e e t h18-Nov-07 20:18
N a v a n e e t h18-Nov-07 20:18 
GeneralRe: how i can down load a file from server to a client machine Pin
jagan12318-Nov-07 20:21
jagan12318-Nov-07 20:21 
QuestionTo Display video in browser Pin
garga118-Nov-07 18:50
garga118-Nov-07 18:50 
AnswerRe: To Display video in browser Pin
N a v a n e e t h18-Nov-07 19:03
N a v a n e e t h18-Nov-07 19:03 
Questionproblem in storing hindi font in database Pin
Ravi_2118-Nov-07 18:19
Ravi_2118-Nov-07 18:19 

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.