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 TouchToneTommy 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: MojoZig
  • Content: Threads
  • Order by date
  1. MojoZig

    Switching from Tables to CSS

    Ok, I know this question isn't new so please forgive me if it's redundant. I've searched and just don't understand what the best practice is for slicing my photoshop file up to make the best CSS Layout. I can create a CSS layout from scratch, but now I'm trying to take an existing table layout...
  2. MojoZig

    Posting a regular form from within an ASPX page ...

    Got a situation where I have to post information offsite to a coldfusion server. I had it working on a bare aspx page using response.write statements of all my old form elements and it worked fine. Using repsonse.writes in my template obviously doesn't work since they are posted at the top of...
  3. MojoZig

    If Datalist returns no data, then ...

    Got a simple question, if I have this datalist below that gets populated via a sql database. <asp:DataList ID="DataList1" runat="server" DataSourceID="SqlDataSource1" BackColor="LightGoldenrodYellow" BorderColor="Tan" BorderWidth="1px" CellPadding="2"...
  4. MojoZig

    Passing Datafield Information ...

    Got and Issue ... New VS2005 User ... I have this code which works great except: <div style="text-align:center;"> <hr style="width:75%" /> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=ServerName;User ID=UserName"...
  5. MojoZig

    Passing Datafield Information ...

    Got and Issue ... New VS2005 User ... I have this code which works great except: <div style="text-align:center;"> <hr style="width:75%" /> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=ServerName;User ID=UserName"...
  6. MojoZig

    URL, UNC path script issues...

    This should be an easy quick question: I have this code below which I acquired from this forum I believe. It works great but I now need to change it from a local folder on the intranet server to a unc path. This is the code that works: <!-- List these three folders. --> <ul> <%...
  7. MojoZig

    Disable User Account and more ...

    Does anybody have good information on a script that will execute the following once the user name is inputted once: 1. Disable the User's account 2. Marks the "Hide from Exchange address lists" on the Exchange Advanced tab or just deletes the exchange mailbox. 3. Moves the User's home directory...
  8. MojoZig

    ERROR: Login script for Mapped drives ...

    Ok, I am really having a tough time with this and need some help cleaning it up and fixing my error. This code is supposed to connect to LDAP and map the user's department S: drive and Division T: drive. The code works if you are getting an S: and T: but if the user doesn't have a Division...
  9. MojoZig

    Checking a file, deleting and emailing notification ...

    I need a script that will check to see if a text file is on a server at a specific location: if it is, then it needs deleted, else an email notification needs sent. Sounded easy .. Set objFSO = CreateObject("Scripting.FileSystemObject") If objFSO.FileExists("C:\FSO\ScriptLog.txt") Then...
  10. MojoZig

    FTP Script from an HTML Page ...

    Why doesn't this work? I can use the user name/password/ftp server in the browser window and it works, but it seems that this script isn't putting everything where it needs to go... Thoughts? This is the script in the HEAD tag ... <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function...
  11. MojoZig

    Help enumeration groups in a specific OU ...

    I got this script from ZColton. Everything works just great. The script initially returns all the groups in the domain and then links to the users in the groups. I have our department groups in a specific OU: "Domain Name/Security Groups/Departmental Security Groups" I can't figure out how...
  12. MojoZig

    Troubleshooting a connection to LDAP ...

    I was following zcolton's troubleshooting suggestion in another post, which I respect since you start at square one: =================This Code Works=========== <%@ Language=VBScript %> <% Option Explicit Dim objADsPath,objDomain, telephonenumber, mail %> <html> <head> </head> <body> <% Set...
  13. MojoZig

    Script to display an AD Phone List for an intranet

    Does anybody have any good leads on a script that will pull the user and phone list from AD and display it on a website? Thanks in advance. Tommy
  14. MojoZig

    Will this script wait for the download before proceeding?

    Ok, new question: Here's my script: ''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''''''''''''''''''''''''''''''''''''''''''''''''' 'Adds the HOSTS file Const OverwriteExisting = TRUE Set objFSO = CreateObject("Scripting.FileSystemObject") Set WshShell =...
  15. MojoZig

    System Folder Variable Question ...

    I have this script below and it works fine like this: =========================== 'Adds the HOSTS file Const OverwriteExisting = TRUE Set objFSO = CreateObject("Scripting.FileSystemObject") objFSO.CopyFile "\\server\updates\hosts", "c:\windows\system32\drivers\etc\", OverwriteExisting 'This...
  16. MojoZig

    VBScript Wildcards

    I am creating a script to log a few network drives. I have one drive that all the Database users get. All the groups for Database users begin with "COO_DB_" Is there a wildcard I can use for all groups that begin with COO_DB_ to get this drive mapped or would I have to list all of the...

Part and Inventory Search

Back
Top