Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
  <body>



        <form id="form1" runat="server">
            <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">
        </asp:ScriptManager>



            <div id="navarea" style="display: none">
             <asp:UpdatePanel ID="UpdatePanel2" runat="server">
             <ContentTemplate>
            <ul id="navigation" class="treeview" runat="server">                    

             <li id="parentnode" runat="server">
             Animals
             <asp:Panel ID="Panel1" runat="server">
            <ul id="janwar" runat="server">
            <li id ="test" onclick="getText" runat="server">Goat</li>
            <li id ="test1" runat="server">Cow</li>
       </ul>
     </asp:Panel>
             </li>
             <li id="products" runat="server">
             Products
             <ul runat="server">
             <li runat="server">Apple</li>
             <li runat="server">Samsung</li>
             </ul></li>
             <li id="Accessories" runat="server">
             Drinks
             <ul runat="server">
             <li runat="server">Coca Cola</li>
             <li runat="server">Pepsi</li>
             </ul>
             </li>
            </ul>










     <asp:Label ID="another" runat = "server">sajjad</asp:Label>
        </div>
        <asp:Label ID="Label1" runat = "server">Type here</asp:Label>
        <asp:TextBox ID="testing" runat = "server" Text="ehsan"></asp:TextBox>
        <asp:Panel runat="server">
        <asp:Button ID="swap" runat ="server"  />
        </asp:Panel>
       <asp:HiddenField ID="HiddenField1" runat="server" ClientIDMode="Static" Value="" />


    </ContentTemplate>
    </asp:UpdatePanel>  
    </form>
</body>
</html>

This is my .aspx file code where I am selecting the id of li which is clicked by user and when button clicked I am setting the textbox text to that li text. It's working but after postback value is reset, while i want to maintain the change on server side.

this is my jquery script

    <script type="text/javascript">



        $(document).ready(function () {

            $("#navigation").treeview({
                persist: "location",
                collapsed: true,
                animated: "medium"
            });
            var ehsan;
            $("#navarea").css("display", "");


             $("#swap").click(function () {

                var temp = $("#testing").val();
                // alert(temp);
                var geting = $("#HiddenField1").attr('Value');

                alert(geting);
                $("li#" + geting + "").html(temp);




              });

            $("#janwar li").click(function () {

                ehsan = this.id;
                $("#HiddenField1").attr('Value', ehsan);
title="change" text="change" value="change" name="change"></button>');




            });
        });




</script>

How to add the li change on server page? Kindly if any sample code available? Thanks in advance.

share|improve this question
You can send your li change to server using ajax. – pXL Jul 5 '12 at 6:47
Do you want to change it for everyone, or just the current person? If the former, you might want to use a database; otherwise local storage might work. – dbaseman Jul 5 '12 at 6:47
Muhammad Adil I don't know how to send kindly if you help me – user1503106 Jul 5 '12 at 7:02
I just want to chage the li text on server side no database is involved right now – user1503106 Jul 5 '12 at 7:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.