First why? You will need to shell out and execute a command. OTTOMH you could use the file system to create the file you want to print and then shell out and...
... Users are in cars, outside the network, on a very slow connection. They would pull up a "daily report" of their calls, print them, then when they walk...
Have you thought about sending them a html formatted email or as a .csv attachment? Not as simple as walking in and tearing off a report since they would have...
Hi Dian, You have a <% %> mixed in with a Response.Write. Look at it like so: <% Response.Write "value=<%=variableName%>" %> Can you see why that's invalid?...
Thanks, Ray!! JUST when I think I "'"get it"'"...I screw it up again...but I do think I understand this one and that is ALMOST what I tried...just a dumb...
Hello all, In my recent absence from the internet world the server I managed before has fallen far below par and the current admin/owner of the box is 'less...
... Welcome back. :] Have you looked at Server Matrix? I have a dedicated server that I have full control over. $99/month. I opted for 2000, since I...
Dear All, Having some problem read strings form a access db. The string consists of several words devided by spaces. Only the first word is put into my...
I assume you are doing something like this; <input type=hidden name=MyString value=<%=rs("myfield")%>> If so you need the value to be in quotes <input...
I have a database with 2 tables. Table1.userid (a list of users) Table2.fldDate is a log of when users login. I use a dropdown list from table1.userid to see...
WOW. Thanks Ray. You save my day. a l i ... From: "Ray at home" <listray@...> To: <active-server-pages@yahoogroups.com> Sent: Monday, June 07, 2004...
aliadon
aliadon@...
Jun 9, 2004 1:44 am
9311
This should work: Select table2.* from table2 inner join table1 on (table2.fldusername = table1.userid) where table1.userid='" & sUserId & "' and where...
Here is my full code. I now get (missing operator) in query expression 'table1.userid='crollins' and where table2.fldDate ... dbRs.Open "Select table2.* from...
Not "... and where ..." just "... and ...". I think you'll also need to surround your date literal with # rather than ' - assuming it's Access. You should...
I'm having trouble understanding what you're after here. Is it simply that you want to only look at records where fldDate is in the last 30 days? You should...
Dear friends: I have an issue. I have developed a form with a login form and multiple menus forms. Based on the user ID and password the user get an...
Throw in some response.write's and see what values are coming back both times to find any differences. If this doens't work, post more details on how you...
Anybody knows how to read an RSS Feed's XML of an external site using ASP and without the use of XSL? I searched on the web but all of them uses XSL. Thanks....
Hi, My client hosts their website at an ISP. (win2k) They have an Access DB on their local network. We would like an ASP page on the website to interact with...