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!

Recent content by LikeThisName

  1. LikeThisName

    redirect localhost

    Yes, I did find, that there was a default.asp page that was just redirecting it to the other path. That was my initial thoughts, but the network person was pretty certain it was configured with IIS. LikeThisName <- ?
  2. LikeThisName

    redirect localhost

    hi there is server when you type http://localhost it redirects to http://localhost/intranet/pages/details.asp How they do that? I can't find where that path is defined so I can replicate it. Thanks, any help much appreciated LikeThisName <- ?
  3. LikeThisName

    Character sets and URL encoding

    Did you get a solution? I am interested in this as well LikeThisName <- ?
  4. LikeThisName

    reference textbox dynamically

    Thanks you two, for valuable posts. This code worked: Private Sub UpdateAnswer(ByVal question As Integer, ByVal answer As Integer) Dim x As Integer Dim t As TextBox Dim b As Button t = Page.FindControl("Textbox" & question) t.Text = answer For x...
  5. LikeThisName

    reference textbox dynamically

    Please what is wrong with this code? Private Sub UpdateAnswer(ByVal question As Integer, ByVal answer As Integer) Dim x As Integer Dim t As TextBox Dim b As Button t = "textbox" & question t.Text = answer For x = 1 To 5 b = "Button"...
  6. LikeThisName

    text highlighter

    that deserves a fifth star, i was thinking of those lines, and was going to post a solution to my question but you beat me to it. LikeThisName <- ?
  7. LikeThisName

    text highlighter

    what about if the searched work appears in a link, it throws off the link. test your scripts. if you search website and in the page one if it's apearances is in <a href="./websitetest">demo 1</a> that becomes <a href="./<span...
  8. LikeThisName

    DLookUp Problem

    please post solution LikeThisName <- ?
  9. LikeThisName

    change the cursor style in an input text box?

    onfocus="this.style.cursor = 'hand';" also works for instance, don't know the blink off hand. ;) LikeThisName <- ?
  10. LikeThisName

    Using a css with .net

    reply nevermind i am a moron, i figured it out now. LikeThisName <- ?
  11. LikeThisName

    Using a css with .net

    i've tried putting <link rel="stylesheet" type="text/css" href="myStyle.css" /> into my header1.ascx page but it's not doing anything. i put it <head></head> tags around it but when i hop from code view to design view back to code view it takes the <link ... out of and just below the Head tags...
  12. LikeThisName

    Using a css with .net

    any luck? LikeThisName <- ?
  13. LikeThisName

    Downloading BLOBS from Database without 3rd party tools

    thanks drex for your valuable replies, i went with aspupload.com. Great product for what I needed. I highly recommend it. I was able to in a few minutes download all the blobs into the proper directories and then upload them back up. this was to transfer extranets, one platform to another...
  14. LikeThisName

    Downloading BLOBS from Database without 3rd party tools

    Did you have any success? I am looking to download a million+ blobs as files. i don't care if i have to buy 3rd party tools though i'd prefer to write some process, any pointers or recomendations would be helpful thanks. LikeThisName <- ?
  15. LikeThisName

    Download BLOB

    if I wanted to extract(copy) blobs (mostly pdfs) from a sql server table to (into) a folder on the network. would the solution above help me. thanks. LikeThisName <- ?

Part and Inventory Search

Back
Top