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 strongm 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: LikeThisName
  • Order by date
  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 <- ?
  16. LikeThisName

    Auto increment letters? approach question

    sure is how many letters in the alphabet? 26? so if the increment is more than 26 over what would represent A than it would be A then the letter or the letter printed for the number of times it is 26 over. does that make sense / help you? LikeThisName <- ?
  17. LikeThisName

    help with filter: query

    i can't seem to get the above to work. i simplified my query a little bit name is actually an expression concatonated field as well as office room_number on the joins this was the actual query, and i can't group this as is. SELECT TOP 100 PERCENT dbo.person.first_name + ' ' +...
  18. LikeThisName

    help with filter: query

    i have a query that returns the names of people with a window office, most of these people are part of a Group A. A few of these window offices are shared by two people, but I only want to return one name per room. I can return one name already incorporating vbscript to filter the array i build...
  19. LikeThisName

    current folder name only

    YOU THE MAN! thanks LikeThisName <- ?
  20. LikeThisName

    current folder name only

    PHV, thankyou as always for pointing me in the right direction phypath = cstr(server.MapPath(Request.ServerVariables("PATH_INFO"))) pos=InStrRev(phypath,"\") phypath = left(phypath,pos-1) pos=InStrRev(phypath,"\")+1 Response.write MID(phypath, pos) can i do this in fewer lines...

Part and Inventory Search

Back
Top