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 <- ?
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 <- ?
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...
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"...
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...
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...
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...
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 <- ?
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 <- ?
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 <- ?
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 + ' ' +...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.