Hi,
I have a web page in ASP.NET which has a FILE object and a browse button.
Users can click the browse button to locate the files they want to upload
into the web server. Some users save the files in Mac machine and run the
web page. How can they select these files to upload into the web server? Do
I need to change something in my program?
Please advise.
David - 30 Apr 2008 13:27 GMT
Nope. You don't need to do anything special.
The fileupload works the same way wether Windows, Mac or Linux.

Signature
Best regards,
Dave Colliver.
http://www.AshfieldFOCUS.com
~~
http://www.FOCUSPortals.com - Local franchises available
> Hi,
>
[quoted text clipped - 5 lines]
>
> Please advise.
Stan - 30 Apr 2008 14:27 GMT
> Hi,
>
[quoted text clipped - 5 lines]
>
> Please advise.
In theory if the user is using a W3C complient browser (regardless of
the client OS) then all ASP.NET generated pages should be accessible.
In practice there may be anomalies with some browsers particularly
older ones and if you want to try and accommodate them VS does have
verification tools which will flag up any HTML that might cause a
problem. However this is only applicable to manually entered markup in
the .aspx file. All web server controls are rendered by ASP.NET in
such a way that most reasonably up to date browsers should cope with.
The only time that the developer has control of this is with custom
web controls.
HTH