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: *

  • Users: fchan
  • Order by date
  1. fchan

    Dynamically Creating a table that displays images

    Thanks for the help. I think I figured it out. =)
  2. fchan

    Dynamically Creating a table that displays images

    I want to dynamically create a table to display thumbnail images. The table should only have four columns, but can have as many rows as needed to display all the images. I am pulling the images from my web server using the FileSystemObject object and I am inserting the file name into the image...
  3. fchan

    Deleting records while inserting same records into new table

    Hi, I have a small asp app that allows our HR group to maintain job postings (add, update, delete) on our public web site. Our HR Rep would like a list of the deleted postings. How can I delete records from one table while inserting the same records into another table? I know how to do this...
  4. fchan

    VBScript question regarding loop control structure

    Thanks Mark. That did the trick.
  5. fchan

    VBScript question regarding loop control structure

    I am creating an SQL statement from an array. The values in the array supply the values for the WHERE clause of my SQL statement. Here's my code: ************** Dim strPostingSQL, strWhere, iLoop strPostingSQL = "DELETE FROM tblCurrentJobs WHERE " For iLoop = LBound(arrPostings) to...
  6. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    tom11011, thanks for the help.
  7. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    Yes, all my html pages load fine. Its just my asp pages that don't.
  8. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    Yes, I tried to set the "execute permissions" to "scripts & executables" and it did not fix the problem. Thanks for trying.
  9. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    When I uncheck the "show friendly error messages" I get the following error message, "Server Application Error." The error message that comes with the "Page cannot be found" is an HTTP 500 - Internal Server Error. I've tried re-registering the asp.dll and that...
  10. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    tom1101, Thanks for the suggestion, but unfortunately, it didn't fix the problem. Any other suggestions? Thanks
  11. fchan

    ASP pages not loading with IIS 5.0 on Windows 2000 Server

    Hi, I recently removed and re-installed the IIS 5.0 component on my Windows 2000 server and now my asp pages will not display. All my html pages display correctly, but I get a "Page Not Found" error when I try to view an asp page. I checked my permissions and I am using the Internet...
  12. fchan

    Page Not Found Error when loading my asp page

    Hi, I checked all the permissions and it all seems to be in order. My web site allows anonymous access and the user account that is used for anonymous access is the Internet Guest Account - IUSR_MyComputerName. The Internet Guest Account has "Read and Execute" access as well as the...
  13. fchan

    Page Not Found Error when loading my asp page

    I just tried renaming one of my html files that works to an asp file and I get the same results.
  14. fchan

    Page Not Found Error when loading my asp page

    Hi, My test webserver (Win 2000 Server) recently started acting up so I uninstalled IIS 5.0 and then added the IIS component again. Instead of fixing the problem my steps made the problem worse. Now none of my asp pages will display from my test server. I get the error message, "Page...
  15. fchan

    Cannot display asp pages from my web server

    As far as i know it is not a permission problem. the wwwroot folder and all sub-folders are set to allow anonymous access. And no, I am not trying to access the asp pages outside of the browser.
  16. fchan

    Cannot display asp pages from my web server

    Hi, I'm running IIS 5.0 on a Windows 2000 workstation and I can't get my asp pages to display. I get a HTTP 500 - Internal Server Error when I try to view my asp pages. I can see html pages fine though. Any suggestions? I already uninstalled and reinstalled the IIS component a couple of times.
  17. fchan

    CSS and ASP - two tastes that don't go great together?

    Jeff, You can create two different style sheets, one for IE and one for Netscape. Then use the appropriate style sheet for each user based on your browser detecting code.
  18. fchan

    How do you apply the @page at rule in your html

    Starway, Thanks for the info. But I guess I'm still confused with how to use the @page style. If my html page is like so: <html> <head> <style>@page {size: landscape}</style> </head> <body> some text </body> </html> Will my page print in landscape orientation? Because when I try this, it...
  19. fchan

    How do you apply the @page at rule in your html

    Thanks Starway, I have seen that web site. But I'm still unsure of how to use the @page at-rule. Taking their example: @page birthday-card:right { margin-bottom: 3in; margin-left: 2in; margin-right: 2in; margin-top; 1in; } How would I use this in my HTML. Do I create a <div> tag to contain...
  20. fchan

    How do you apply the @page at rule in your html

    Hi, I'm trying the change the orientation of my html document when its printed to landscape using the @page at rule. I know that you define the @page using the following, @page [page selector]:[optional pseudoclass] {size:auto landscape} What I'm not sure of, is how you apply this at-rule in...

Part and Inventory Search

Back
Top