2
got it.
sorry i'm pasting link rather delivering my own solution this time. let me know if this doesn't solve your problem
http://www.softlion.com/blogs/post/2010/07/09/UpdatePanel-html-helper-for-jQueryASPNET-MVC.aspx
twitter @sumitjolly
1
Hello Hemant,
Please look at the below url
http://evolpin.wordpress.com/2011/04/12/asp-net-mvc-partialview-with-ajax/
1
Attach UpdatePanel to dropdown list e.g.,
<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<fieldset title="Panel1">
<legend>Panel 1</legend>
<asp:DropDown CssClass="UserControlDiv" ID="lblPanel1" runat="server" />
<asp:Button CssClass="button" ID="btnPanel1" OnClick="btnPanel1_Click" Text="Update this Panel(Panel 1)" runat="server" />
<asp:Button CssClass="button" ID="btnPanelBoth" OnClick="btnPanelBoth_Click" Text="Update both Panels(Panel 1 & 2)" runat="server" />
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
0
Sir, I want to use in Mvc Razor controls.