Pick Your Brains
haven't got the db at home... but do you think this will work...
<%
dim client
dim username
dim directory
dim fs
dim create
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.FolderExists("h:"&client,&username)=true then
response.write("Folder already exists!")
else
set fs=fs.CreateFolder("h:"&client,&username")
end if
set fs=nothing
%>
View Replies
how do i pick the Mac address of a NIC of a computer ?I know how to get the IP address. but wondering if its possible to pick the NIC.
View Replies
View Related
How to i search the colon in the data and then pick characters after colon. for eg:
ACTUAL DATA
Date: Fri Aug 04 15:14:38 EDT 2006
REQURED DATA
Fri Aug 04 15:14:38 EDT 2006 .
View Replies
View Related
I wanna write asp code to pick up *.MAI from particular folder and read them. There is no problem with reading the file but how can I pick up the latest file from particular folder?
View Replies
View Related
I'm trying to work out a reg.exp. that will pick out a sql statement against a certain set of tables - in this case any table named "Survey~something~", but I only want to pull back those statements where the CompanyID column doesn't appear in the query. (The expression is being used in my editor so it might appear a little strange, but by and large it works the same as you'd expect.)
[^']select(.){0,100}from(.){0,100}Survey(.){0,25}where (.){0,200}
What do I need to add so that I get those without a companyid column?
Something like...
[^']select(.){0,100}from(.){0,100}Survey(.){0,25}where (.){0,200}(^companyid)
(tried this one, but it doesn't work)
View Replies
View Related
I need to pull five records randomly from a database, and display them on a web page. These need to change weekly.
Is there a way to do this in ASP?
View Replies
View Related
The interval that a driver is available from 5:00:00 AM to 8:00:00 PM....
And I dont want to pick this route that runs from 10:15:00 to PM 4:00:00 AM...because the driver is not available btw those times..However my query picks that tooo..Why? Code:
View Replies
View Related