How to include javascript in aspx page

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

  1. #1

    Default How to include javascript in aspx page

    hi, I have javascripts for my Old ASP application i was
    using
    <script language="javascript" type="text/javascript"
    src="scripts/validate_fields.js">
    </script>

    Can i do the same thing using Custom Validator?
    thanks
    AV Guest

  2. Similar Questions and Discussions

    1. Include javascript in a javascript file
      Hello, Is there a way to include a javascript file from WITHIN a javascript file? Something similar as in the "#include" directive in C++? ...
    2. Accessing a aspx page using HttpWebRequest from another aspx page on the same webapp
      Did you have any luck on this as I have the same problem. Maybe you can help me out of you solved your problem.
    3. Writing javascript code in every page of my site using aspx
      Good Morning, I would want to use aspx to write this javascript code for me in every page of my site www.etantonio.it how can I do this ??? ...
    4. Every time i try to display records on an include page i get repeats of the whole include
      hi guys and ladies, here is my problem and i would be most grateful if any one could shed some light on this please: i have a default.asp page...
  3. #2

    Default Re: How to include javascript in aspx page

    If you mean can you do the same validations on the server side with a
    custom validator, yes. You tie code-behind validation code to the
    Page IsValid, which you check on a postback.
    You can still, also, insert the script tag, enable client side
    validation and insert the function call directly or programmatically
    into the html.

    Dawn.


    "AV" <anilvarmaen@hotmail.com> wrote in message news:<a28201c35c5c$a2192790$a001280a@phx.gbl>...
    > hi, I have javascripts for my Old ASP application i was
    > using
    > <script language="javascript" type="text/javascript"
    > src="scripts/validate_fields.js">
    > </script>
    >
    > Can i do the same thing using Custom Validator?
    > thanks
    HrtgSkr 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