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 Chriss Miller 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: teblack
  • Content: Threads
  • Order by date
  1. teblack

    Tracking Options

    I'm looking for some help with tracking the number of hits my site gets from users and not the web crawlers. I was wanting to know if anyone has found or has a product that can determine if the hit is a person or a web crawler. My web provider does not have anything to help me with this...
  2. teblack

    Data Import - Flat File to SQL 2005 table

    I have a SSIS package that reads in a file. There is a conditional split near the bottom of the package. For each record there is a determination about what code to store that record under. i.e. "C" - Current, "F" - Former, "N" - Never. Currently the cond split will load the record into one...
  3. teblack

    Export Table into XML File

    I'm in need of taking a SQL 2000 table and build from that an XML file for use in a stand alone PC app. Does anyone have any examples, or know if this can be done? I have seen some things about saving the package in the Meta Data folder, but that does not seem to work for me. Any help with...
  4. teblack

    HREF - PDF doc - Window size & location

    I have the following href statement in an asp page, that is used to display a PDF document. The users are requesting the document to open as the top window, and maximized. Can this be done, if so, can you please point me in the right direction. <a...
  5. teblack

    Textarea - Non-Scrolling

    I have a text area that I would like to only allow a certain number of lines and characters per line. ie. 2 lines of text input, each line can contain up to 80 characters. I seems to be able to get the 80 characters, but can not seem to only limit the box to 2 lines. Once I keeping typing...
  6. teblack

    Convert Text file Into XML File

    We are attempting to convert a Text file from a Mainframe system into an XML file with DTS. We are having problems getting anything to work, has anyone been successful with this process? Thanks in advance for the help with this problem. TBlack -
  7. teblack

    Convert Small Money to Character

    I have a smallmoney field that sometimes contains a dollar value and sometimes does not. When the value is null I would like to replace the NULL/Blanks on a report with the value of 'N/A'. I have tried a cast and convert command but with no luck. [code] SELECT CASE WHEN...
  8. teblack

    IIS and Visual Interdev on XP

    I'm attempting to set-up another computer with IIS and Visual Interdev for web development. Everytime I attempt to build a new project I get the following error message. [Cannot create a disk-based Web application in ‘C:\Inetpub\wwwroot\Project15\Project15_Local’. You cannot configure...
  9. teblack

    Onclick - Session Variable

    I have a asp page that has a "DELETE" button on it. I currently have a confirm message box showing via the onclick using javascript. What I would like to do is have the onclick check a session variable, and then based on that variable use one of two confirm messages i.e.(see example below). I...
  10. teblack

    JPG Pics not Showing Correctly.

    I have a company website that has some thumbnail pics that reference a jpg file. I have one that will not display the jpg file. The new page displays with a red X. I have attempted to reload the image to the server but nothing seems to fix the problem. The 8513_CR is the pic that does not...
  11. teblack

    ASP Page - SQL Query with WildCard

    I have an ASP page that I'm attempting to retrieve data from a SQL 2000 DB and display that data on a page. I have built the ado commands, but I'm having problems getting the SQL statement to work when using the wildcard '%'. The code is listed below. adoCmd.CommandText = "select * from...
  12. teblack

    Web Interface with DTS getting a text file saved

    I'm looking for some help with a DTS connection to the internet. I have a website that we need to retrieve a text data file from. I have the path, and when you click on that path a new browser window opens and the file is displayed in a text format. Then you must click File, Save As to get...
  13. teblack

    Random Number Generator getting Asterisks

    Below is what I'm using to generate a random number based on a new input record. It works fine with the expecetion of once in a while it will generate an asterisks for the field, which is wrong. Can anyone tell me why it's doing that. [code] DECLARE @max int DECLARE @sublocation char(3) SET...
  14. teblack

    OnMouseDown Javascript Problem

    I have a asp page that display a table of people with a radio button to select that individual for editing. Currently once you select a radio button you then click "SELECT" button. But the users want the page to fire imediatly once a radio button is selected, thus removing the second step of...
  15. teblack

    Confirm Box - ASP Page - Onclick Event

    I have a page that I have a confirm box issue bases on a click of a delete button "Are you sure you want to delete"? Is is possible to wrap If logic around that confirm box logic. I would like to test a selection box, to determine if the user has picked something from a that selection box...
  16. teblack

    Back/Refresh Button Issues

    We are working on a large project that has many data entry pages and we are having problems with the users using the back button which is causing our insert and update routines to re-fire, thus causing duplicate entries in our database. This also occurs when they press the fresh button from a...
  17. teblack

    Pictures and Slow Loading of Pages.

    I have a business website, and have a lot of pictures of rooms in the houses that I build. What I have found is that the pages that have the thumbnail's load slowly. Is one format better than the other format to present thumbnail pictures. i.e. (jpeg, gif, bmp, or other). Once you click on...
  18. teblack

    TextArea Unable to Redisplay data after Validation

    I have a form that has a couple of textarea boxes on it. Once the user enters their information and presses the continue button the asp page goes through a validation routine. If errors are found then the data entry page is re-displayed with all of the data re-filled back into the form. The...
  19. teblack

    Radio Buttons and Length check

    I have a page that builds a list of employees with a radio button attached to each row. I have written a vbscript routine to spin through the list to make sure that at least one row has been checked. I'm trying to get the length value of the radio button called "selected", so that I know how...
  20. teblack

    Random Number with Criteria

    I have the need to build a random number, and I have found code to do that via the faq page. But I need to add some limits to that returned random number. First the random number needs to be greater than 100, but less than 999. I can get the less than 999 but have been unable to figure out...

Part and Inventory Search

Back
Top