Which two properties are on every validation control?
Answer Posted / aadesh kumar
We have two common properties for every validation controls
1. Control to Validate,
2. Error Message.
What tags do you need to add within the asp:datagrid tags to bind columns manually ?
< asp:DataGrid id="dgCart" AutoGenerateColumns="False" CellPadding="4" Width="448px" runat="server" >
< Columns >
< asp:ButtonColumn HeaderText="SELECT" Text="SELECT" CommandName="select" >< /asp:ButtonColumn >
< asp:BoundColumn DataField="ProductId" HeaderText="Product ID" >< /asp:BoundColumn >
< asp:BoundColumn DataField="ProductName" HeaderText="Product Name" >< /asp:BoundColumn >
< asp:BoundColumn DataField="UnitPrice" HeaderText="UnitPrice" >< /asp:BoundColumn >
< /Columns >
< /asp:DataGrid >
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is manifest in .net?
What is web.config in .net?
What is an anonymous method?
What is a .net class?
Why do we use msmq?
Differentiate between managed and unmanaged code?
Explain what does managed mean in the .net context?
What is concurrency? How will you avoid concurrency when dealing with dataset?
Define marshling?
What is connection pooling and how do you make your application use it?
What is the difference between web application and enterprise application?
Explain what are the deferred execution and the immediate execution in linq?
Can "this" be used within a static method?
Tell us what is heap and what is stack?
How is .net able to support a lot of languages?