Dumb Q: How to access clients' local file system

michael_hk

Centurion
Joined
Nov 24, 2003
Messages
199
Location
Hong Kong
Hi guys,

I am classic ASPer and I know very little about ASP.NET.

I know I need to use ActiveX stuff to access web clients' hard disk, but how to do the same thing with .NET?

Thanks.
Michael
 
You can still using ActiveX control like what you use previously, because ASP.NET still run in browser, client side process is nothing to do with server side languages.

In .NET environment, you can use "Windows Control Library", it is similar to ActiveX control in VB6, but the big issue is, the client side need to has .NET Framework in their pc, so I think it is not practical at the moment
 
bungpeng said:
You can still using ActiveX control like what you use previously, because ASP.NET still run in browser, client side process is nothing to do with server side languages.

In .NET environment, you can use "Windows Control Library", it is similar to ActiveX control in VB6, but the big issue is, the client side need to has .NET Framework in their pc, so I think it is not practical at the moment

Got it, thanks. ;)
 
Back
Top