You have to add two asp:Button controls for Policy and for Renewal.You add an ASP.NET skin file named default.skin to a theme. You need to create and use a separate style for the Policy button, and you must use the default style for the Renewal button. What should you do?

 Posted by Shantanupatel on 3/13/2012 | Category: ASP.NET Interview questions | Views: 4398 | Points: 40
Answer:

Add the following markup to default.skin
<asp:Button SkinID ="Policy"></asp:Button >
<asp:Button></asp:Button>
Use the following markup for the buttons in the ASP.NET page.
<asp:Button SkinID ="Policy">Help</asp:Button>
<asp:Button>Renewal</asp:Button>


Source: Interview | Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response