We use both Syteline/Progress and SQL databases. For my asp.Net programs I need to use data that's on Progress. I set up stored procedures in TSQL that access Progress.
The TSQL Select queries take so long to run (45 seconds to 10 minutes) that I've resorted to retrieving all the records I...
I found my answer on another forum: it was, indeed, a size issue.
I added:
<httpRuntime maxRequestLength="102400" executionTimeout="360"/>
to my web.config file and I was able to upload a 20Meg pdf file with no problems.
Thank you both for your responses. The error was:
"Internet Explorer cannot display the webpage"
Using breakpoints I found that the app doesn't even get to the page load for the postback. But, as I said, the code works fine for other documents. Now that I know this isn't a size issue, I agree...
I have a asp.net app that allows users to attach supporting documents to a record. The document image is loaded into SQL Server 2000. The users attach Excel, txt, jpegs, etc, including pdfs.
The table looks like:
Col Name Data Type Length Allow Nulls
DocumentID int 4 0
Description...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.