B
Big Charles
Hello,
My ASP.NET application has to read a DBF file in a CD from CD-Drive of
a client PC. Then, I have to pass the data to a DataReader.
The route is: Client-PC -> Server
The DBF file could be between 20MB - 40MB, which is quite large.
If the ASP.NET application has to upload the file, then I would have to
change in the web.config this value:
<httpRuntime maxRequestLength="4096" > and instead of 4096, put
another higher number.
Is there any way to read the DBF file from the client-PC without doing
upload?
Maybe should I develop some ActiveX control that will be installed only
in some PCs?
Or host some Windows Controls in my ASP.NET app that will alow reading
DBF file from client PC?
What about if I pass the DBF file to an XML file?
Even that XML file should be uploaded by the ASP.NET app?
Thanks a lot !
My ASP.NET application has to read a DBF file in a CD from CD-Drive of
a client PC. Then, I have to pass the data to a DataReader.
The route is: Client-PC -> Server
The DBF file could be between 20MB - 40MB, which is quite large.
If the ASP.NET application has to upload the file, then I would have to
change in the web.config this value:
<httpRuntime maxRequestLength="4096" > and instead of 4096, put
another higher number.
Is there any way to read the DBF file from the client-PC without doing
upload?
Maybe should I develop some ActiveX control that will be installed only
in some PCs?
Or host some Windows Controls in my ASP.NET app that will alow reading
DBF file from client PC?
What about if I pass the DBF file to an XML file?
Even that XML file should be uploaded by the ASP.NET app?
Thanks a lot !