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

    Bloody _vti's...

    I picked up this useful code from brainjar to parse a set of folders and display hyperlinks to the contents. It does this really well but also includes the bloody _vti folders that FrontPage leaves lying around in the results. I know I need to add someting like If InStr(1, objItem, "_vti"...
  2. Webflex

    strAutoLogon

    I'm running a copy of Snitz forum. in a mixed mode (and migrating) NT/AD domain. The forums utilise auto logon which works for NT users with this NT Set strNTUserInfo = GetObject("WinNT://"+strNTUser) strNTUserFullName=strNTUserInfo.FullName and for AD users with this AD Set strNTUserInfo...
  3. Webflex

    That old apostrophe problem

    I know I need to add in some code (lname = replace(lname, "'", "''")) to handle apostrophe's in input fields but for the life of me cannot work out where to do it in this Macromedia generated code. Help.... TIA <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Response.Expires = 60...
  4. Webflex

    Mail FormField Order

    Hi I am mailing a form using the JMail component, when the form is sent the form fields are in apparently random order. At first I thought it was because I was using a table for layout however after removing the table the results are still the same.......? I have appended the form, the...
  5. Webflex

    Remove Space / Build Name

    Hi I'm trying to build an output starting with AUTH_USER that consists of First Initial and Surname without any space, for example 'Alexander Smith' becomes 'ASmith' not 'A Smith' As implemented below I get 'A Smith' and have problems with the length of the surname...
  6. Webflex

    First Initial Last Name

    Hi I currently use the code below (very helpfully supplied through this forum) to populate a users full name into a form field, I now want to take the first initial and surname to make part of an e-mail address (which will work in a large percentage of cases). How can I truncate...
  7. Webflex

    Sendmail / JMail Capture return EMail Address

    Hi I have an html form that includes a field for EMail address. This form passes to sendmail.asp (action=&quot;sendmail.asp&quot;) which uses the JMail component to actually send the message. I want the EMail field in the html form to be used as the 'msg.From' value in the sendmail process...
  8. Webflex

    Display PDF from database link

    Hi The code line below is used to display an image referenced in a database field, I would like to open a pdf document instead that is referenced by a database field called dwglink. response.Write &quot;<img Src=&quot; & &quot;&quot;&quot;&quot; & dwglink & &quot;&quot;&quot;&quot; &...
  9. Webflex

    Squid 2.5 and http 1.1

    Is it possible to enable http 1.1 through Squid? We are attempting to move from ISA to Squid 2.5 on RedHat 9. We use an e-commerce site that requires http 1.1 to be enabled in the browser, it is not possible to upload/download from this site when using Squid as the proxy. Another problem...
  10. Webflex

    Reverse Proxy Woes

    I am using ISA as a reverse proxy behind a firewall (DMZ configuration)with one public IP address. Incoming requests are looked up in external DNS and routed to the ISA server. All internal servers that are published have a destination set defined and a web publishing rule. For example; 1...
  11. Webflex

    This ASP Code runs on IIS4 but fails on IIS5

    As below, OK on IIS4 <% dim authuser dim slashpos dim domainPiece dim userPiece authuser = Request.ServerVariables(&quot;AUTH_USER&quot;) slashpos = CInt(instr(authuser,&quot;\&quot;)) domainPiece = Left(authuser,slashpos - 1) userPiece = Right(authuser,Len(authuser) - slashpos) %> Gives...
  12. Webflex

    Adding sites to local intranet zone IE 5.5 SP2

    Hi I need to add two sites to the local intranet zone of some 600+ PC's running Windows 2000 in an NT4 Domain. I have full access to profiles, log in scripts etc (and IEAK - but would prefer to do it without using this). Any suggestions on the best method to achieve this? TIA Webflex
  13. Webflex

    NT4 to W2K Permission Problems

    I am moving from an NT4 IIS4 server to an W2K IIS5 Server. Both servers are in the same Intranet domain, the NT4 is a BDC and the W2K a member server. Resource access is controlled by a domain local group Intranet_Access which contains groups from other domains that are allowed access to...
  14. Webflex

    Build URL

    Hi moving on from a previous problem, I am trying to use the code below to pick up a username and build it into a URL as below, only problem is it does not work, it automatically goes to the notes.asp page, how do i stop it to pick up the username then go to the login page and go to the...
  15. Webflex

    Sloppy code (according to my boss.....)

    The code below displays a URL to link to a detail page, for some reason the link in the processed page (Photo) displays with speech marks &quot; at the beginning as in &quot;Photo. response.write RS(&quot;dept&quot;) & &quot;</td><td>&quot;&quot;<A...
  16. Webflex

    Capture field entry build URL

    Hi I want to capture an entry in a form field and use it to build a URL as in &quot;formentry&quot; becomes http://hardcodedbit/formentry.ext ideally I'd also like to capture and pass the password from another form field. (this is for notes but the IBM help system is awful for finding...
  17. Webflex

    Notes Webmail Login Page

    We are changing from Exchange to Notes Mail (It's a long story) and I have been asked to create the login page for webmail. Is there a template available? I know I need to capture the notes username and password and pass to the Notes server, in the format Username...
  18. Webflex

    Image Dispay Code Syntax Error

    Hi I'm trying to pull an image reference held as a text field in an access database and display it, code of the page is below. <% option explicit dim useraction dim dsn,sql,conn,rs,flag,color,x dim fname,lname,tel,mobile,init,dept,id,image id=request(&quot;id&quot;)...
  19. Webflex

    Implementing Screensaver NT4 BDC/W2K Machines

    Can anyone point me in the direction of a good 'how to' in terms of making the default screensaver for W2K PC's (using system policies from an NT4 PDC) a specified (ss3dfo.scr) with a defined image, that needs to be copied to the local machine? TIA Webflex
  20. Webflex

    ISA / Trend WebProtect

    Running ISA in Cache mode, single NIC - just tried the trial of Trend InterScan WebProtect (which meant having to install IIS!) which installed and was registered OK under Web Filters. However the browser presented at the proxy was presented with the IIS under construction page. Any ideas on...

Part and Inventory Search

Back
Top