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: Sheco
  • Order by date
  1. Sheco

    Protecting Content/Downloading

    Protect it from who? Please clarify the need to "protect" the content.
  2. Sheco

    Is there a Procomm Plus replacement

    FileLink has its own scripting language and works in Windows 7: http://www.serengeti.com/filelink.php
  3. Sheco

    Show Last Record

    That last error seems that perhaps your recordset is in the default firehose forward-only style. Try using a client side cursor and if that doesn't work post your connection string. If you only want the last record and are not using thte other records elsewhere on the page then the best idea...
  4. Sheco

    Browser dependent server-side code execution !?

    I bet if you look in the server activity logs that the browser is actually sending two HTTP Requests in quick succession so it is causing the page to run twice. I’d also wonder if it is the browser’s fault or some plug-in… does it happen on a fresh empty install of firefox? Finally if you are...
  5. Sheco

    Store asp script in database

    Doing this opens you up to the same kinds of security problems associated with SQL Injection except, with this technique it is your web server that could execute a bad command instead of your database server... even the dumbest of script-kiddies will try del c:\*.* which could be a problem...
  6. Sheco

    Store asp script in database

    Well technically you can do it but it leads to so many potential security problems that its best to pretend that you can't and find a different technique.
  7. Sheco

    Restricting Access to Members of an AD Group

    If you have access to the IIS Admin tool then just change your app to disable anonymous access... then use the file system to set permissions on the folder and files where your web app lives.
  8. Sheco

    updating an mdb field via drop down box in asp

    Maybe yuour example code was truncated or something because I dont see anywhere you actually execute the nice SQL statement to do the update. Anyway, see if you can get it working to update with a simple hard-coded SQL statement. This will make it easier to track downt he problem.
  9. Sheco

    XMLHTTP with IP vs. DNS name

    Do both URLS work if you paste them into the address bar of your web browser?
  10. Sheco

    Store asp script in database

    I didnt see anything about a database in any of your code.
  11. Sheco

    disable submit button if some variable > 0

    If you have all the values to be able to know that the submit button should not be displayed, then dont even write the HTML for the button to the Response. <% If ShowButton = True Then %> <input type="submit" name="btnSubmit" value="Click Me!"> <% End If %>
  12. Sheco

    Getting ObjectRSearch to write text

    First thing to do is determine what the plain HTML would be to create the required result. Once you have this it will be easier to construct some ASP for building the HTML.
  13. Sheco

    getting string from server script to Client script

    If you write the server-side ASP in VBScript, the \n will be meaningless...
  14. Sheco

    getting string from server script to Client script

    If the character string contains \n and the output of the ASP looks like this: outputstr = "abcd efgh Then the ASP must be written in JavaScript and the \n is being evaluated rather than being sent to the browser... If this is indeed the problem then it should be fixed by replacing "\" with...
  15. Sheco

    stream.write fileserver references.

    Can you verify the value of xmlHttp.responseBody?
  16. Sheco

    Dynamic include file from folder content

    When damber wrote "If it only includes html, js, css, etc, (i.e. client side stuff) then just write out the raw content, as this is rendered by the browser, not the ASP server." he meant to use the FSO's OpenTextFile function to get a TextStream object and us its ReadAll function to grab the...
  17. Sheco

    Newbie: how to I line up text?

    Teh <tr> stands for Trogdor
  18. Sheco

    Form Values

    Does the form submit to itself?
  19. Sheco

    Adding input fields on the fly

    I don't about Yahoo but you can use client-side javascript to modify the DOM and change the page that way...

Part and Inventory Search

Back
Top