If I use Notepad to open a text file written by a Java program, the new line character displays as a special char rather than actually breaks to a new line. If I use Wordpad or read the file in Unix, it displays normally - it breaks to a new line. Anything I can do to resolve this?
Thanks!
Hi,
I have a web server (NT4.0/IIS4.0/sp6) running several intranet applications and is inside a domain. All web applications use domain user IUSR_servername for anonymous access. Recently, I have experienced high frequency of error message saying "The referenced account is currently...
Hi,
I have a web server (NT4.0/IIS4.0/sp6) running several intranet applications and is inside a domain. All web applications use domain user IUSR_servername for anonymous access. Recently, I have experienced high frequency of error message saying "The referenced account is currently...
In this case, you can try delete "redim" part. So, you'll have something like this:
Dim nameArray
'Redim Preserve nameArray(3)
nameArray = Array("User_name","Password", "Bill_Company")
Good luck,
Add one line to your code, something like this:
If not rs.BOF then
Do While NOT rsEOF
Count = Count + 1
Redim Preserve PhoneNum(count)
PhoneNum(count) = rs("PhoneNum")
rs.movenext
Loop
end if
Good luck,
Have you tried change
"onClick="Javascript:Arrows('end', 'endValue');"
to
"onClick="Javascript:CheckValues('end', 'endValue');"?
Good luck,
Hi all,
We have a website running on IIS4.0. After installing and turning on SSL, an intranet application using internal IP address (because of firewall) did not work, getting "The page cannot be displayed" error. The website grants access to only certain IP addresses, which include...
Thanks!
The server on which my app is running called "server1". I used to be able to access the app by this url - "http://server1/my_app". Now, "server1" is within domain "domain1". I got "This page can not be displayed." error when I try to...
I have an intranet application running on an NT server. When this server was put under another domain, the web server stopped running. The err: "Access denied". How can I make it work? Any help would be highly appreciated.
I have an intranet application running on an NT server. When this server was put under another domain, the web server stopped running. The err: "Access denied". How can I make it work? Any help would be highly appreciated.
What is the data type of RMA#?
If it is text, try this
sql = "SELECT * FROM [REPAIR] WHERE [RMA#] = '" & variable &"'"
One more thing, there should be a space between "&" and varable.
If you are using vbscripts, try this
sql = "SELECT * FROM [REPAIR] WHERE [RMA#] = " & variable
If javascripts, try this
sql = "SELECT * FROM [REPAIR] WHERE [RMA#] = " + variable
Good luck!
Yes it makes sense.
Maybe I didn't describe the problem clearer. Page2.asp does not know in advance which question process.asp will ask, so there is no way that page2.asp can have an answer before calling process.asp. Process.asp has no access to a database that stores the answers to its...
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.