Global variable "is not declared"??

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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"...
    2. 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...
    3. [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
    4. #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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139