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

    Posting textbox values

    Hi all, When I enter data into my database I replace single quotations with doubles (e.g: " to "" and ' to ''). Then when I want to post it back out to the user I replace double quotations with singles (e.g: "" to " and '' to '). However when I input these into text box values if the string...
  2. mainmast

    Help with Replace() function

    Re-Write you SQL statement to this: strSQL = "SELECT * FROM tblLock where Version = ['" & selVersion & "'] and County = ['" & selCountry & "']" The added brackets will allow for spaces.
  3. mainmast

    Create letters

    Hi all, I need to create letters (basically it is a standard template populated with fields from a database, like a name or address) with my ASP website. What do you think would be the easiest way to do so? The letters need to be printed so their receiver's address is printed on the paper so...
  4. mainmast

    Create dynamic variables

    I'm using the same script in this post: thread333-1208172 I need to be able to dynamically create variables based off of what "Foo" contains in that script posted by Sheco at the end. Is that possible?
  5. mainmast

    Restore

    So just delete the log files created by the new installation and then mount them without copying the log files from the previous installation folder to the new one?
  6. mainmast

    Restore

    Based on those articles, after I install Exchange again, I need to remove the E00xxxxx.log files and copy over the ones from the previous installation as well as the databases. Is this correct?
  7. mainmast

    Restore

    Anyone know how/have an article that explains how to restore Exchange 2000 database files to a NEW installation of Exchange on a NEW installation of Win 2k Advanced Server? Thanks!
  8. mainmast

    Couple Questions

    1) I have a server with two RAID arrays. One Array is two SCSI drives in a RAID 1 and the other is four SCSI Drives in RAID 5. I got in today to find the server totally crashed and tried to bring it up for hours on end trying everything from chkdsk to emergency repair to whatnot. To make sure it...
  9. mainmast

    Post unknown amount of form variables

    Thanks - that is exactly what I needed Sheco.
  10. mainmast

    Post unknown amount of form variables

    Let me clarify: I'll have an ASP page on a server (lets say http://www.myserver.com/FormProcess.asp). Then, I'll have at least 30 seperate plain HTML files created by different people. In those HTML files there will be a form, and in that form there could be any amount of input elements, like...
  11. mainmast

    Post unknown amount of form variables

    Hi all, I need to be able to post every single form element's value to an ASP page. I would not know how many, what type, or the name of the element. I could have a form of 5 textboxes, a few radio buttons, a select menu, and more. Any ideas? Thanks!
  12. mainmast

    ISA Redirect

    Hi all, I need to forward all requests (including external) to http://www2.url.com:8000/scripts/piv.exe to a local web server: http://10.100.101.13/scripts/piv.exe. www2.url.com is hosted on another server. How can I do this? Thanks! Brandon
  13. mainmast

    Regular Expressions

    Hi all, I have a text file with several hundred lines. I need to go through each line and see if it follows the following pattern: *,*,*,"*, *" Where the asterisk represents any character besides spaces and quotation marks. I think I can do this with regular expressions? Example: Good...
  14. mainmast

    ISA, IIS, and Active Directory

    Monday I'll be installing and deploying Windows 2000 Advanced Server, Internet Security and Acceleration Server (ISA) 2000, Exchange Server 2000, Internet Information Services 6 (IIS), Windows Server Update Services (WSUS), Anti-Spam SMPT Proxy (ASSP), Microsoft SQL Server 2005, and more for the...
  15. mainmast

    Unable to access certain websites

    I went to www.pcpitstop.com from elemsrv and did a trace route to www2.mckeelacademy.com. Here are the results, they don't look good to me, but what can I do to fix it? Hop# | Avg ms | Loss % | Graph | Address 1 * 100 0.0.0.0 2 14...
  16. mainmast

    Unable to access certain websites

    Hi all, OK, here is a little background information: We have a High School with a server, 'mailserve' and an Elementary with a server, 'elemsrv'. They are on two different campuses. mailserve: Windows 2000 Server Domain Controller (MCKEELACADEMY) Exchange 2000 ISA elemsrv: Windows 2003...
  17. mainmast

    Execute VBS file

    Ok I forgot cscript: Set oWShell = CreateObject("WScript.Shell") oWShell.Exec("cscript C:\inetpub\wwwroot\PwordReset\resetpassword.vbs davieb mckeel") Set oWShell = Nothing Works now. Thanks again!
  18. mainmast

    Execute VBS file

    Wait, nevermind. I spoke too soon. Here is my code: Set oWShell = CreateObject("WScript.Shell") oWShell.Exec("C:\inetpub\wwwroot\PwordReset\ResetPw.bat") Set oWShell = Nothing When I go to that page (blah.asp) it just shows a blank page, and doesn't reset my password. ResetPw.bat is...
  19. mainmast

    Execute VBS file

    OK, I created an account called StudentReset. I added it to the administrator group and more. I went to the directory security settings in IIS and unchecked anonymous access and went to the directory and gave StudentReset full access. It works now, and I can't thank you enough. This is going to...
  20. mainmast

    Execute VBS file

    I went into AD and made IUSR a member of the Bultin administrator group as well as Domain Admins. I did the same for IWAM account. Still no go. Any ideas?

Part and Inventory Search

Back
Top