DropDownList in an .ascx file problem.

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default DropDownList in an .ascx file problem.

    I have a dropdownlist in an .ascx file. When using the dropdown it is workin
    3 or 4 times and suddenly it gives an error like "Control
    'DropDown1_ddlUrunler' of type 'DropDownList' must be placed inside a form
    tag with runat=server."


    Onur Bozkurt Guest

  2. Similar Questions and Discussions

    1. programatically get ascx file name
      Can anyone tell me how to get a string of the file name for an ascx file? On an aspx file, Request.Servervariables will return the path of the...
    2. Access ASCX controls from the Code Behind file?
      Hi All! I'm using Code-behind model for my ASP.NET pages. But to skip the compilation step, I reference my code-behind pages as follows... <%@...
    3. Using Global variable in .ascx file
      How can I use a Global variable in .ascx page. I have created a menu control and registered it in my .ascx file. I want to use the global variable...
    4. how to load an ascx file in class.vb ?
      I need to import an *;ascx, as an object, in my class, that is in myclass.vb. How can i do ? i saw the method LoadControl but i can't use it, or...
    5. Javascript in ascx file
      Is there any limitations in using javascript in .ascx files (user controls) I got it working just fine but some of the properties for objects, ie...
  3. #2

    Default Re: DropDownList in an .ascx file problem.

    Are you using the control on different pages, or as part of a framework UI,
    or dynamically loading the control? Please post a snippet of your page where
    the error is happening and the control used so we can diagnose in more
    detail.

    James J. Foster, DotNetCoders
    [url]http://www.dotnetcoders.com[/url]



    "Onur Bozkurt" <onur.bozkurt@softhome.net> wrote in message
    news:%238h5mXKPDHA.1556@TK2MSFTNGP10.phx.gbl...
    > I have a dropdownlist in an .ascx file. When using the dropdown it is
    workin
    > 3 or 4 times and suddenly it gives an error like "Control
    > 'DropDown1_ddlUrunler' of type 'DropDownList' must be placed inside a form
    > tag with runat=server."
    >
    >

    James J. Foster 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