Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dwu1998

    Get data from a report

    Hi all, How can I retrieve data programatically from a crystal report using vb.net? Thanks in advance for any help.
  2. dwu1998

    Newline character

    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!
  3. dwu1998

    Hi, I have a web server (NT4.0/I

    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...
  4. dwu1998

    The referenced account is currently locked out

    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...
  5. dwu1998

    Why do I get "type fault" error with Array creation:

    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,
  6. dwu1998

    ASP query & logic

    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,
  7. dwu1998

    setting a server-side hidden variable in client-side script

    Have you tried change "onClick="Javascript:Arrows('end', 'endValue');" to "onClick="Javascript:CheckValues('end', 'endValue');"? Good luck,
  8. dwu1998

    Can't access website using internal IP address

    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...
  9. dwu1998

    web server not accessible

    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...
  10. dwu1998

    web server not accessible

    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.
  11. dwu1998

    web server down, help!!!

    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.
  12. dwu1998

    Exiting a For Each Next loop

    use &quot;exit for&quot; like For Each <file> in <directory> 'Find InStr(&quot;text&quot;,<file>) if textFound then exit for end if Next
  13. dwu1998

    Access Database Variable Problems

    What is the data type of RMA#? If it is text, try this sql = &quot;SELECT * FROM [REPAIR] WHERE [RMA#] = '&quot; & variable &&quot;'&quot; One more thing, there should be a space between &quot;&&quot; and varable.
  14. dwu1998

    Access Database Variable Problems

    If you are using vbscripts, try this sql = &quot;SELECT * FROM [REPAIR] WHERE [RMA#] = &quot; & variable If javascripts, try this sql = &quot;SELECT * FROM [REPAIR] WHERE [RMA#] = &quot; + variable Good luck!
  15. dwu1998

    keep requesting client browser

    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...
  16. dwu1998

    keep requesting client browser

    Thanks again. However, page2.asp should provide the answer to &quot;which one&quot; without asking the user.
  17. dwu1998

    keep requesting client browser

    Thank you shaddow! The problem is process.asp will ask more information from page2.asp. For example, when page2.asp calls process.asp with a request for something like &quot;give me a tape&quot;,which is originally requested by the user, process.asp will ask page2.asp for something like...
  18. dwu1998

    ASP &amp; Global.asp &amp; Session

    For each page you want to apply the security rule, you have to check the session variable (SECURITY_LEVEL, assuming you have assigned it a value after a user successfully logged in). This should work. Good luck!
  19. dwu1998

    keep requesting client browser

    Hi all, I have a problem and any help would be greatly appreciated. I have three web servers on different domains. When a browser makes a request (&quot;X&quot;) to server &quot;A&quot;, server &quot;A&quot; will do something and pass the results together with original request &quot;X&quot; to...
  20. dwu1998

    Upper limit of a textbox?

    Thanks for all your responses.

Part and Inventory Search

Back
Top