microsoft.public.dotnet.framework.aspnet

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

  1. #1

    Default microsoft.public.dotnet.framework.aspnet

    How to access script tag attributes in asp.net from code behind?

    Thanks in advance
    Nitc



    nitc3 Guest

  2. Similar Questions and Discussions

    1. find microsoft.public.dotnet.framework.aspnet.webservices online
      This is a monthly reminder that at http://www.ugroups.com/Computers/viewforum.php?f=20 you can easily access...
    2. microsoft.public.inetServer.asp.general ?
      Did something happen to the "microsoft.public.inetServer.asp.general" newsgroup? I haven't seen any new messages for a long time. Using...
    3. dotnet.framework.webservices ???
      Can someone explain to me and other users of the forum why there are 2 newsgroups covering supposedly the same topic area: ...
    4. Problems with Microsoft.Net Framework SDK
      I recently installed Microsoft.Net Framework SDK on my W2000 server because I wanted to run some ASP.NET Application, now I can run aspx pages from...
    5. Can't install Microsoft Framework
      I have XP Professional. I want to install Visual Studio.net. But when trying to install Microsoft framework, it failed though I have installed IIS....
  3. #2

    Default Re: microsoft.public.dotnet.framework.aspnet

    If i get you right, By accessing properties.

    Natty Gur, CTO
    Dao2Com Ltd.
    28th Baruch Hirsch st. Bnei-Brak
    Israel , 51114

    Phone Numbers:
    Office: +972-(0)3-5786668
    Fax: +972-(0)3-5703475
    Mobile: +972-(0)58-888377

    Know the overall picture


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur Guest

  4. #3

    Default Re: microsoft.public.dotnet.framework.aspnet

    Let me rephrase my question.
    If you want to add <script language="javascript" src="/aspnet/scripts.js"></script> tag from the code behind page then how would you do it?

    For eg. If you want to add link tag you can use this.LinkTag.Attributes["href"] = "Local/Styles/Style.css";

    Thanks
    Nitc



    "Natty Gur" <natty@dao2com.com> wrote in message news:umyyQi5ODHA.2244@TK2MSFTNGP11.phx.gbl...
    > If i get you right, By accessing properties.
    >
    > Natty Gur, CTO
    > Dao2Com Ltd.
    > 28th Baruch Hirsch st. Bnei-Brak
    > Israel , 51114
    >
    > Phone Numbers:
    > Office: +972-(0)3-5786668
    > Fax: +972-(0)3-5703475
    > Mobile: +972-(0)58-888377
    >
    > Know the overall picture
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!
    nitc3 Guest

  5. #4

    Default Re: microsoft.public.dotnet.framework.aspnet

    RegisterClientSideScriptBlock("BlockID","<script language="javascript"
    src="/aspnet/scripts.js"></script>");

    Natty Gur, CTO
    Dao2Com Ltd.
    28th Baruch Hirsch st. Bnei-Brak
    Israel , 51114

    Phone Numbers:
    Office: +972-(0)3-5786668
    Fax: +972-(0)3-5703475
    Mobile: +972-(0)58-888377

    Know the overall picture


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur Guest

  6. #5

    Default Re: microsoft.public.dotnet.framework.aspnet

    Natty,
    Had to make slight modifications and it worked!
    The actual problem was if you do server.transfer to a page which is having an asp.net validations control the WebUIvalidations.js is not loaded some times and it displays an error stating to reinstall the js file by running aspnet_regiis -c command.
    The possible solution for this problem is add this code from where you are performing server.transfer.

    //ASP.NET bug fix which causes script file not to bind with page
    string sEnvVersion=Environment.Version.ToString();

    //From 1.0.3705.288 To 1_0_3705_288
    sEnvVersion = Regex.Replace(sEnvVersion,"[.]","_");

    //Register the client script
    RegisterClientScriptBlock("BlockID","<script language=\"javascript\" src=\"/aspnet_client/system_web/"+sEnvVersion+"/WebUIValidation.js\"></script>");

    Cheers
    nitc3



    "Natty Gur" <natty@dao2com.com> wrote in message news:#vFBO26ODHA.3768@tk2msftngp13.phx.gbl...
    > RegisterClientSideScriptBlock("BlockID","<script language="javascript"
    > src="/aspnet/scripts.js"></script>");
    >
    > Natty Gur, CTO
    > Dao2Com Ltd.
    > 28th Baruch Hirsch st. Bnei-Brak
    > Israel , 51114
    >
    > Phone Numbers:
    > Office: +972-(0)3-5786668
    > Fax: +972-(0)3-5703475
    > Mobile: +972-(0)58-888377
    >
    > Know the overall picture
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!
    nitc3 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