Javascript in ascx file

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

  1. #1

    Default 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 form.item property isn't
    coming up. In .aspx files everything is fine. I want to
    set a boolean var, set that to a hidden html element, then
    test it in the code-behind. I have attached the ascx file
    for reference. Is there something I need to do.

    What this is all coming down to is so I can have the user
    confirm a deletion in the web site, and then test for the
    boolean value. And since you can't use message boxes in
    ASP.Net this is the root I'm taking. Thought if there is a
    better solution in displaying a message box, I'm all ears,
    thanks.
    Matthew Nace 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. JavaScript Src attrubute in ascx
      I have a System.Web.UI.UserControl as custom control and I have a javascript block for user control. The problem is I want to bring src attribute...
    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. 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...
  3. #2

    Default Javascript in ascx file

    I personally think a better ROUTE is to add an on-click
    event attribute to the control that uses a confirm message:

    Code-behind:
    btnDelete.Attributes("OnClick") = "return confirm('Ok to
    delete?');"

    >-----Original Message-----
    >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 form.item property i
    David Waz... 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