What is an alternative way of setting borders style without CSS property?

 Posted by vishalneeraj-24503 on 6/4/2014 | Category: ASP.NET Interview questions | Views: 1241 | Points: 40
Answer:

We have a BorderStyle in-built control property through which we can set control border style.It has the same options as border-style CSS property.

For Example:-
<asp:Button ID="Button3" runat="server" Text="Button" BorderStyle="Solid" />  

<asp:Button ID="Button5" runat="server" Text="Button" BorderStyle="Dotted" />


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response