all groups > inetserver asp general > january 2004 > threads for saturday january 10
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Microsoft VBScript runtime (0x800A01F5): Illegal assignment: variable name
Posted by Matt at 1/10/2004 11:23:05 PM
<% hour = Request("controlname") %> will yield the following error:
Microsoft VBScript runtime (0x800A01F5)
Illegal assignment: 'hour'
However, if I declare hour, then it is fine.
<%
Dim hour
hour = Request("controlname")
%>
But I think in VBScript, declaration of a variable is op... more >>
Addition in ASP
Posted by Jay at 1/10/2004 9:11:01 PM
I have two strings that instead of adding them together to get the sum the
are concatenating together. Does anyone know how I can get these two to
add.
while not rstemp4.eof
vservdate = rstemp4("servdate")
vdesc = rstemp4("desc")
vservhours2 = rstemp4("servhours")
vtravelhours = r... more >>
Warning: MVP.org is not a Microsoft MVP site
Posted by Steven Burn at 1/10/2004 8:26:45 PM
[quoted from: microsoft.public.win98.gen_discussion]
The Microsoft MVPs have a web domain, mvps.org, which contains what
we hope are a lot of useful articles aimed at being of help to users
of Windows.
We have become aware that there is another domain, mvp.org without
the s, and would adv... more >>
how to populate empty field
Posted by Alistair at 1/10/2004 6:56:00 PM
this has been driving me nuts for over an hour now.
I have a DB with a date field that is empty
Because of this the records sometimes get included in searches because their
contents are less than a particular search.
so..I had planned to populate them with any old date.
BUT I CAN'T!!!
... more >>
Active Server Pages error 'ASP 0141'
Posted by alanmurray28 NO[at]SPAM yahoo.co.uk at 1/10/2004 12:41:52 PM
I am getting the errror Active Server Pages error 'ASP 0141'
Page Command Repeated
/contactform.asp, line 12
The @ command can only be used once within the Active Server Page.
Anybody know why?
<%
Dim myMail, myBody
myBody ="Name: "& request.form("name") & vbcrlf & "company: "& vbcr... more >>
help with trim function
Posted by Mikael Hellström at 1/10/2004 10:10:55 AM
Hi all,
i need to use the trim function trim("str","?")
My question are. How do i remove the "return sign" from a string??
Regards Mikael
... more >>
load xml with asp lost central european chars
Posted by badd at 1/10/2004 7:23:28 AM
Hi,
my problem is that i load an xml file (which displayed
well in iexplorer standalone) with an asp file, and the
page displays o instead of ő, u instead of ű, so my
central european characters are changed. the xml well
formed, and well encoded. i hope ;)
<?xml version="1.0"... more >>
Best way to get data into called page: session or new database call??
Posted by cftranslate NO[at]SPAM hotpop.com at 1/10/2004 7:09:36 AM
My 1st page calls a 2nd that uses same data from a database. What is
the best way to get the data in the second: a new call to the database
or passing array through session variable??
I seems to me that avoiding a new call will speed up things but my
concerne is that I have read many posts wi... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
get last record from database without looping
Posted by Matt at 1/10/2004 12:11:48 AM
how to get the last record from database without looping?
Whenever the user need to insert a new record to the database, it just
increment the id field by one from the last record.
I tried objRS.MoveLast, but it wont work.
... more >>
|