how to find control of mater page's button from Partial view in MVC Asp.net
I m ne开发者_StackOverfloww to MVC I am facing one problem for finding control of button from partial view for a button in master page. Can anyone tell me how can i find control of button from partial view
Thanks, Sunita Saloni
I think you must be mistaken something here. In ASP.NET MVC server side controls (runat="server"
) such as buttons are not used. A good place to start learning ASP.NET MVC is to go through the articles here: http://asp.net/mvc
i have solved my problem when i use
$('#Save').attr('disabled', 'disabled');
精彩评论