Declare Arraylist Using
may i know how to declare arraylist using asp?
View Repliesmay i know how to declare arraylist using asp?
View RepliesWhilst trying to learn DataGrid, starting from simple tutorial found from w3schools as follows: Code:
View Replies View RelatedUsing Option Explicit necessitates that any variable used has to be
declared (Dimmed) explicitly but it DOESN'T necessitate that the
variable HAS TO BE DECLARED BEFORE the variable is used. For e.g. the
code below, which first uses the variable "str" & then declares it,
works fine:
===============================
<% Option Explicit %>
<%
str="Hello World"
Response.Write(str)
Dim str
%>
===============================
Why so? If I am not mistaken, usually it's the other way round with
other languages where variables have to be declared before they are
used.
I am calling Server.Execute("2.asp") from "1.asp" and expect to have
application variables declared in "1.asp" available to the script code in
"2.asp", at least this is what the documentations says, but it doesn't work.
I am declaring the variables in "1.asp" as public (VBScript). Does anyone
have an idea if this is supposed to work?
how do we declare a string for combo box.I know for a textbox it would be
strName = request.Form("txtName") -provided txtName is the name of the textbox.
Lets say name is the name of the combo box...
Do we declare like this ?
strName = request.Form("Name.selectedIndex") ??
I am calling function of vb dll from asp. How do i declare the arguments to be passed of string datatype. I tried using Dim but its giving me error. I want to explicitly declare three variable as string.
View Replies View RelatedAnyone has done declaring temp table in ASP code, and then populate the temp table, and then inner join with other table and so on? I encounter some sql error it seems indicate asp can't do such operations..
View Replies View RelatedMy question is do ASP need to declare smtp server when send email using CDonts function?
View Replies View Relatedhow to declare session variables and use it in insert and update sql statements... the scenario is I have:
2 html forms
2 ASP FILES
I am able to trap data from the first form into the acces table..but my second form(which is continuation of first form) has a update query....(ie...it shld update the same record the one inserted from the 1st form )..both the forms work on table in access db
its an annonymus...questionnaite...therefore i am not trapping any user name or login id...but the requirement is the survey made shld be unique....as in no user shld be able to answer the questions twice.