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: *

  • Users: anon007
  • Order by date
  1. anon007

    ASP Scheduled Task

    You will need to post the code, but from what your say I thing you could do this vbs, just hard code the code where ever the includes would be in the vbs. I am not sure if you can run includes with vbs.
  2. anon007

    Maxtor Mini 80 GB Windows 2003

    I got it I forgot to go into the disk management to format and assign a letter. Oh and it is not supported in a server enviroment but it will work.
  3. anon007

    Maxtor Mini 80 GB Windows 2003

    I know the drive is working, and in the control panel it shows the drive. However, where you should see it in the C, D, section its not there. I don't think its installed and when I pluged it into the the server it finds the hardware and says its ready for use but it don't launch the software...
  4. anon007

    Percent Format Help

    got it this is what I needed. <%=FormatPercent(session("ABC"),0)%>
  5. anon007

    Percent Format Help

    Wow I thought I tried that, that is what I am needing but now it gives the value 0.0% what I need is for it to give 0%
  6. anon007

    Problems with SQL Server Install

    Sorry gertNo1 that was the wrong link
  7. anon007

    Problems with SQL Server Install

    Here is a good place to start trouble shooting: http://support.microsoft.com/kb/297834
  8. anon007

    Learning ASP

    Sorry Sheco beat me to it.
  9. anon007

    Learning ASP

    http://www.w3schools.com/asp/default.asp
  10. anon007

    Dynamic Drop Down Cookie

    Not quite following what you need, but if you are needing to pull info from your database you would somthing like this: set rs = Server.CreateObject ("ADODB.Recordset") Set conn = Server.CreateObject("ADODB.Connection") Conn.ConnectionString =...
  11. anon007

    Percent Format Help

    What I need to do is have this 0.00% look like 0% this should be easy but I am have a brain melt tonight. Yhe code below has an error when I use it any help? <%=FormatPercent(session("ABC",1))%>
  12. anon007

    Another Backup Question

    Yeah the maxtor drive has encryption software with it but for now if I decide to take it off site we can do it with the bank just arround the courner, however when we build or buy our new building I will take extrem and costly measures to make certain we have the latest onsite setup to ensure we...
  13. anon007

    Another Backup Question

    Well offsite has its on security risk in and of it self, but your right it would be wise to have it. If I was to do it in the future I would only let one person be responsible for changing out the drives then put them in a fire proof fault at the bank in a safe deposit box and rotate it out...
  14. anon007

    Another Backup Question

    Oh yeah just for the people wondering what I secured the safe to the floor with. It was with 25 x 1/4 x 3" Fasciner’s shot in the concete with a concrete gun that accomplished this with 22 cal blanks. Nothing is impossible but it would take some work to get this out of the office in time...
  15. anon007

    Another Backup Question

    Thanks guys I came up with a solution so I don’t have to disconnect, plus I don’t like the idea of taking the hard drive off site this would have its own risk. Ok here it is and it works great. I bought a media, water, and fire rated safe that will hold up to 2hrs of fire protection at 1500...
  16. anon007

    Another Backup Question

    We are running 2003 Server with about 20 GB of data. I was looking into the Maxtor 160GB OneTouch. My question is can it be hot pluged with out powering down the server when we swap the drives out. I know todays mother boards want fry if you do hot plug a usb device but I wanted to make sure...
  17. anon007

    Pulling ASP code from a database field

    <% <a target='_blank' href='/processing.asp?ID=" & rs("DebtorID") & "'> %> Sorry in a rush hope this helps
  18. anon007

    Pulling ASP code from a database field

    Oh use single quotes like so <a target='_blank' href='/processing.asp?ID=" & rs("ID") & "'>
  19. anon007

    Pulling ASP code from a database field

    I havn't a lot of time so yes there is a way to do that. Hope this gets you started sql = "SELECT * FROM [Sales] WHERE [Sales].[CartID]=" & Request.QueryString("ID") rs.open sql, conn, 3, 3 session("id")=rs("CartID") session("sales_item")=rs("SalesItem") rs.close Conn.Close Response.Redirect...

Part and Inventory Search

Back
Top