Click here to Skip to main content
15,886,105 members
Home / Discussions / C#
   

C#

 
GeneralThanks Pin
karande2320-Apr-06 23:02
karande2320-Apr-06 23:02 
Questionreading a remote file Pin
DeepsG20-Apr-06 19:26
DeepsG20-Apr-06 19:26 
AnswerRe: reading a remote file Pin
alexey N20-Apr-06 19:37
alexey N20-Apr-06 19:37 
GeneralRe: reading a remote file Pin
DeepsG20-Apr-06 20:27
DeepsG20-Apr-06 20:27 
AnswerRe: reading a remote file Pin
Guffa20-Apr-06 20:38
Guffa20-Apr-06 20:38 
GeneralRe: reading a remote file Pin
DeepsG20-Apr-06 20:55
DeepsG20-Apr-06 20:55 
AnswerRe: reading a remote file Pin
Guffa20-Apr-06 21:47
Guffa20-Apr-06 21:47 
AnswerRe: reading a remote file Pin
DeepsG20-Apr-06 21:26
DeepsG20-Apr-06 21:26 
Hi all,
Thanks all of you for the replies. Thought to post the solution if anyone needs it. Access a remote file through Asp.Net is different from doing it thro a console or win appl as Guffa rightly pointed out. So to do this there is a class WebClient which can be used
Here's the code snippet

WebClient myclient= new WebClient();
Stream st=mycl.OpenRead(@"http://machine-name/filepath");
StreamReader sr=new StreamReader(st)
...

Then startreading the file using the streamReader.

Thanks
Happy Coding
Deeps

Thanks,
Deeps
GeneralRe: reading a remote file Pin
Guffa20-Apr-06 23:22
Guffa20-Apr-06 23:22 
Questionregarding the coding Pin
siddharth2write20-Apr-06 18:20
siddharth2write20-Apr-06 18:20 
AnswerRe: regarding the coding Pin
Stefan Troschuetz20-Apr-06 22:36
Stefan Troschuetz20-Apr-06 22:36 
AnswerRe: regarding the coding Pin
Robert Rohde20-Apr-06 22:38
Robert Rohde20-Apr-06 22:38 
Questionschedulling Pin
g00fyman20-Apr-06 18:17
g00fyman20-Apr-06 18:17 
AnswerRe: schedulling Pin
Robert Rohde20-Apr-06 22:44
Robert Rohde20-Apr-06 22:44 
QuestionCheck box in a Listview column header possible? Pin
Diana Fernandez20-Apr-06 17:59
Diana Fernandez20-Apr-06 17:59 
AnswerRe: Check box in a Listview column header possible? Pin
gubber21-Apr-06 3:16
gubber21-Apr-06 3:16 
Questiongetting hyperlink Pin
genx_code20-Apr-06 17:16
genx_code20-Apr-06 17:16 
AnswerRe: getting hyperlink Pin
Robert Rohde20-Apr-06 22:46
Robert Rohde20-Apr-06 22:46 
QuestionUsing PropertyGrid and Collection Editor Pin
JuanAlbertoMD20-Apr-06 11:29
JuanAlbertoMD20-Apr-06 11:29 
AnswerRe: Using PropertyGrid and Collection Editor Pin
Robert Rohde20-Apr-06 22:50
Robert Rohde20-Apr-06 22:50 
QuestionBoolean Optimization Pin
Drew McGhie20-Apr-06 11:27
Drew McGhie20-Apr-06 11:27 
AnswerRe: Boolean Optimization Pin
User 665820-Apr-06 11:51
User 665820-Apr-06 11:51 
AnswerRe: Boolean Optimization Pin
Guffa20-Apr-06 11:58
Guffa20-Apr-06 11:58 
QuestionThreads and ProgressBar Pin
achrafus20-Apr-06 11:01
achrafus20-Apr-06 11:01 
AnswerRe: Threads and ProgressBar Pin
Ed.Poore20-Apr-06 12:13
Ed.Poore20-Apr-06 12:13 

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.