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

    Newbe trying to preview asp pages

    You may need to set up the application server entry into the define sites menu. UltraDev does not know what your http server is an therefore cannot work dynamically with it.
  2. kkbigboy

    Is it possible to have 2 submit button in a form? Urgetn!

    I believe not because submit passes every field within the form tag. And also because you can only specify one file to post to after the action tag. <form action=&quot;filename&quot; method=&quot;post&quot;></form>
  3. kkbigboy

    Is it possible to have 2 submit button in a form? Urgetn!

    Yes! but you have to use two form tags. One for each submit.
  4. kkbigboy

    Cookie Alternatives - Hidden variables?

    Another simple way would be to clear the current cookies when the login page loads. For example after the <@LANGUAGE=&quot;VBSCRIPT&quot;%> add this below it. Response.Buffer = true 'if you need to redirect Response.Cookies(&quot;Login&quot;)= &quot;&quot; That blanks all existing Login Library...
  5. kkbigboy

    some asp pages not processed

    Make sure the path to the DB or the DSN values match the settings on your local machine. What errors do you get?
  6. kkbigboy

    ASP pages not executing instead asking to dwnl

    You problem is that you were using a backslash in the form URL that is why you go the file not found error <form method=&quot;POST&quot; action=&quot;localhost\nextpage.asp&quot;> should be <form method=&quot;POST&quot; action=&quot;localhost/nextpage.asp&quot;>
  7. kkbigboy

    Drop List Progressive Search - How To?

    The only way i know of is by using an ActiveX component or Java that maintains a sense of state. ASP pages are not event driven like the above but can be modified by including sub routines and event triggers. Infragistics is a company that does a lot of ActiveX stuff that does what you intend to do.
  8. kkbigboy

    IIS

    the method you are calling to the object MSWC is invalid. Either the object does not support that method or you improperly set the object.
  9. kkbigboy

    Challenge: Ftp download displays new file, but content is old file?

    The user's PC may be caching the old pages and not checking for a newer version. Check the browser settings.
  10. kkbigboy

    php on IIS: problem tranfering variables

    Have you installed a perl interpreter on IIS?
  11. kkbigboy

    IIS on Win XP (Home)

    There is a reason why it is not recommended to run IIS on Home Edition. Just clean install Pro and then install IIS or do it while installing Pro.
  12. kkbigboy

    Controlling IIS from another PC on the network

    Open IIS Manager console. Right click the root webserver Go to properties Then Directory Security Then edit the IP address and domain restrictions Add the Win 98 IP to access granted list. Save (OK) and close go to your 98 machine type http://servername/iisadmin Good Luck

Part and Inventory Search

Back
Top