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. BunBo900

    Incorrect syntax on CType function

    Thanks for a quick response. The error showing on the code line below and not sure where else to look. This page was working and no changes been made to it. Is it possible the backend got changed that is why it is showing that error? Thanks. Dim dv As DataView dv =...
  2. BunBo900

    Incorrect syntax on CType function

    Hello, I have a vb.net page and sql server 2008 back end. I got an error: incorrect syntax near ','. I have been researching and I tired different ways but no luck. Please point me to the right direction. I checked the syntax and it is correct to me. Thanks. Private Sub getCounts(ByRef...
  3. BunBo900

    Microsoft OLE DB Provider for ODBC Drivers error '80004005'

    I GOT IT! You need to register OraOLEDB.dll as 32 bit. Run as Admin at Command Prompt > regsvr32 c:\oracle\product\1120\client_1\bin\OraOLEDB11.dll
  4. BunBo900

    Microsoft OLE DB Provider for ODBC Drivers error '80004005'

    I am migrating old applications from 2k3 to 2k8r2 server. The app works fine in 2k3 but in 2k8. I am not familiar with classic asp. It seems like I am missing configuration steps somewhere. Can someone point me there? I am trying to connect to oracle database 11g. Thanks I got diff errors...
  5. BunBo900

    Error: Active Server Pages error 'ASP 0113'

    I put that line of code in and still got the same error. I am not familiar with classic asp. What about the database connection? Is there any setup for that?
  6. BunBo900

    Error: Active Server Pages error 'ASP 0113'

    Hello: I am migrating my current web server from 2k3 to 2k8R2. This server combines different applications written in classic asp and asp.net. When I run the classic asp application in 2k8, I encountered the following error: Active Server Pages error 'ASP 0113' Script time out The maximum...
  7. BunBo900

    How to I reference a file that is located in a different drive?

    Yes, using HTTP to open up those files. Link to Directory is network stuff I suppose? Am I right? I guess I need to configure on the server side?...I have to look it up because I am not familiar with what you mentioned. Thanks.
  8. BunBo900

    How to I reference a file that is located in a different drive?

    Hello: How to I reference a file that is located in a different drive? My site located under C:\inetpub\wwwroot. Since the C: drive has limited space so I put some of my files e.g., pdf, interactive flash, word, wmv...etc. in a D:\MyFiles drive. But unable to get it to work. <a...
  9. BunBo900

    How to connect to a database in asp

    This is the error: ADODB.Connection error '800a0e7a' Provider cannot be found. It may not be properly installed. /adoConnection.asp, line 8 Since this is a newly built server 2008, I am guessing it needs to install a database driver?
  10. BunBo900

    How to connect to a database in asp

    Hello: I have windows 7 prof and windows server 2008. I have the database in the folder the way it is in the code. I found this code on the internet and dropped in my server to test and it is not doing what it is supposed to be doing. What else I need to do in order to get this working. I...
  11. BunBo900

    How to connect to a database in asp

    I put the files in wwwroot folder so is the database Error msg: HTTP 500 Internal Server Error Thanks
  12. BunBo900

    How to connect to a database in asp

    Hello: I have windows 7 prof and windows server 2008. I have the database in the folder the way it is in the code. I found this code on the internet and dropped in my server to test and it is not doing what it is supposed to be doing. What else I need to do in order to get this working...
  13. BunBo900

    vertical expanding and collapsing menu in asp.net

    Hello: I want to do is vertical expanding and collapsing menu. When you expand the menu, you see the content of another page either in (*.ascx, *.aspx, *.html). I am thinking to do in JavaScript, but my web application is written in asp.net so I guess it is better to go with asp.net. Is it...
  14. BunBo900

    How to validate a checkbox?

    Meaning the current already complicated page is working fine with this Javascript function checkAgreement(source, args) above. Now I need to add a new search capablity to this page. After hours of trying, found out that the above Javascript causing the new search function not to work...
  15. BunBo900

    How to validate a checkbox?

    Hello: The code below is working fine, but when I incorporate the JavaScript function (checkAgreement) below into my existing pages with alot more code it makes certain code on my page not working. I need to make the end user checks on the checkbox before moving to the next screen. Is there...
  16. BunBo900

    Allow only number keys 0-9 in a TextBox

    Thanks. I look into that findconrol. Can you provide a sample specific to my case if possible.
  17. BunBo900

    Allow only number keys 0-9 in a TextBox

    I tried RegEx Validation control as you suggested and I kept getting this error below. I am using it inside <formview></formview> control don't know if this would cause error because when I use it inside <form></form> control seem to work fine. Thx. Compiler Error Message: CS0103: The name...
  18. BunBo900

    Allow only number keys 0-9 in a TextBox

    Hello everyone, How do I create a textbox that takes exactly 4 number. Thanks in advance.
  19. BunBo900

    Pass local variable from code behind to &lt;TextBox&gt; in aspx page?

    There is no masterpage. Only the presentation and code behind page. I just want to put a local variable value into a TextBox instead of a label. Is it do able? for example: string tMessage = "Hello World"; lblLogin.Text = tMessage; // I could pass this to the aspx page txtBoxName.Text =...
  20. BunBo900

    Pass local variable from code behind to &lt;TextBox&gt; in aspx page?

    How to pass a local variable from code behind page to the <TextBox> in aspx page? specifically in the <InsertItemTemplate> section of the page. I could pass to a label fine. thanks ************************************* ************aspx page***************** <InsertItemTemplate> <asp:Label...

Part and Inventory Search

Back
Top