I recently was looking for the same thing and found:
http://216.239.35.100/search?q=cache:BIdsQk7tlXsC:www.csharpindex.com/code/SerialIO/Serial.asp+serialio+c%23&hl=sv
I haven't tested it though.
There are alot of known issues with NT4SP3. I recommend that you upgrade to VB6 (with latest Visual Studio SP) and to NT4SP6a (or later if available).
Our problem actually turned out to be in the Oracle OLE DB provider. Oracle are working on a solution.
/J
Either you do it completely on the client using Javascript or you can refresh the page and write the new value to the textbox on the server. Here is an "example" of how to do it on the client side:
<select id="select1" name="category"...
I'm not sure but ADSI could be the way to go.
http://www.microsoft.com/WINDOWS2000/en/professional/iis/htm/asp/aore7zn6.htm
and maxconnections:
http://www.microsoft.com/WINDOWS2000/en/professional/iis/htm/asp/apro66pf.htm
http://msdn.microsoft.com/library/psdk/iisref/adse25gz.htm...
Maybe you did forget a CCNumber = Request.Form("CCNumber") ?
Also I recommend that you use response.write during debugging instead of writing to a file.
If you mean from a form post then the answer is: you don't. But if it was you who populated the listbox then you should be able to get the displayed text the same way from the id.
If you just want to get the displayed text in a text box to be written in a text box on the fly then you have to do...
I see two ways of solving this.
Either you add the new allergy to the dropdown with a client side javascript or you can actually form post and read all the previously entered data and write them out to the page again but not writing them to the database just yet. The new allergy you will have...
RegExp is a wonderful tool to validate strings. Unfortunately it's not as easy to understand as the VBScript above.
Dim regEx, retVal
Set regEx = New RegExp
regEx.Pattern ="^[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}$"
regEx.IgnoreCase = true
retVal =...
It turned out to be the Oracle OLE DB prodider that was leaking. See thread333-58616 problem isn't solved but now we at least know what the problem is...
Check your zoneDB DSN in ODBC Data Sources. Check if you can connect to your database from some other tool like Visual Interdev or Access.
Also you are using the Application variables in a very strange and very bad way. Why can't you just use common variables?
According to http://www.w3.org/TR/REC-html40/present/frames.html#adef-target you should be able to submit forms to another frame.
http://www.htmlhelp.com/reference/html40/values.html#frametarget
Maybe you shouldn't name your frame with a _ in the beginning?
If the form is posted to a whole new...
If you are interrested in how this turns out then check:
http://technet.oracle.com:89/ubb/Forum14/HTML/001320.html
If you have the same problem and even you didn't solve it then please post! We need to put some pressure on Oracle.
You could page through the record set. There are different ways of doing this. See:
http://www.4guysfromrolla.com/webtech/062899-1.shtml
and
http://www.learnasp.com/learn/dbtablepaged.asp
If it actually have to show all the records on one page then you probably will have to raise the script...
Check the length of the posted field and then add as many characters as you want...
Example:
wantedlength=6
length=len(postedfield)
If length<wantedlength Then
' If IsNumeric(postedfield) Then
addstr=string(wantedlength-length, "0")
postedfield=addstr & postedfiel
' End If
End...
Later last night we tested to use the MS OLE DB provider for Oracle. The memory leak is gone!
There is but one problem, we are in other parts of the application accessing a BLOB-field (CLOB) and the MS provider doesn't support that.
We have reported the problem to Oracle, I'll keep you posted.
If I access the following ASP-page thousands of times with MS Web Application Stress Tool the inetinfo.exe private bytes grows and grows until it stops... Memory leak? Why?
NT4SP6a, Oracle OLE DB 8.1.7.1.0, MDAC 2.6.
ASP-file:
<%@ENABLESESSIONSTATE=FALSE%>
<!--METADATA TYPE="TypeLib"...
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.