Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Jotun #1
Global variable "is not declared"??
Why does this not work? I get this error message: BC30451: Name 'counter' is
not declared. I have condensed my code for this post.
<%
Dim counter
counter = 43
%>
<ASP:Repeater runat="server" DataSource='<%# Dataset1.DefaultView %>'>
<ItemTemplate>
<%
Response.Write("This is the counter value: " & counter)
counter = counter + 1
%>
</ItemTemplate>
</ASP:Repeater>
Jotun Guest
-
what is the "utility link" and "global link" supposed tobe for?
I'm using a halo template to create a personal website for myself, and at the top of the page, there's options for "utility link" and "global link"... -
Setting "variable" global variable ?
Hi ! I wonder if there is any way in Ruby of setting a "variable" global variable at runtime, without using "eval". For example, could the... -
[PHP] URGENT: how to make a global "server temporarily down" page?
David Robley <mailto:robleyd@ozemail.com.au> on Friday, September 05, 2003 5:59 AM said: Yeah, like a rewrite rule. RewriteRule ^*$ down.html -
#25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug... -
Help Please: 'Warning 5001 global variable "iF_timer" already defined in global scope
Hi there, I have just started to get this error: 'Warning 5001 global variable "iF_timer" already defined in global scope The variable name... -
Julian Roberts #2
Re: Global variable "is not declared"??
You need to declare the data type. eg
<%
Dim counter as Integer
counter = 43
%>
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest



Reply With Quote

