i have a div tag..
<div id="postitcontainer" runat="server">
<% Response.Write(StickyNotes.Support.getOldPostits(txtSearch.Text)); %>
</div>
during page load it will execute a method and return some script.
i am calling that div tag from a method
var cont=document.getElementById("postitcontainer");
but i want to call div tag from server side
how can i do this
NaveenKumar