what r the Templeats in ASP.net?
Answers were Sorted based on User's Feedback
Answer / srini
In repeater control there have a 7 Templates
1.header temp
2.item temp
3.alternative temp
4.seperater temp
5.footer temp
6.Selected item Template
7.Edit item Template
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / bhuvana
The Repeater ,DataList, ASP.NET server controls and ASP.NET
mobile controls are templated controls. The DataGrid
control is not strictly a templated control, but uses
templates to customize its user interface.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / smriti
The repeater,Datalist,Datagrid are templated controls in
asp.net
Generally speaking, a template is the description of how a
certain element will be rendered at runtime. In ASP.NET, a
template is property of a server control that describes the
static HTML, controls, and script to render within one
region of the control. For example, a Repeater control has
a HeaderTemplate property that defines the contents of its
header region. You normally define a template within the
body of an ASP.NET page using declarative syntax. For
example, the following code shows how to specify a template
to draw the header and each row of a Repeater control.
<asp:repeater runat="server">
<HeaderTemplate>
<h2>Employees</h2>
<table border="0">
</HeaderTemplate>
<ItemTemplate>
<tr>...</tr>
</ItemTemplate>
</asp:repeater>
When it comes to rendering the contents of the Repeater
control, the ASP.NET runtime uses the content defined in
the templates and processes it?often together with bound
data?to create an HTML representation of the region. All
the server-side controls within the template individually
render themselves as HTML.
The Microsoft? .NET Framework utilizes the ITemplate
interface at runtime to process the templates into a
control hierarchy that can be databound and rendered to
populate a part of an ASP.NET control. As long as you
define templates in a declarative manner?using inline tags
in ASPX pages?you don't strictly need to know about the
ITemplate interface. That will become important only when
you move one step further and start investigating how to
create and assign templates programmatically and
dynamically. But before we look at that, let's review the
use of templates with a DataGrid control.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shibin jayadev
ASP.NET WEBSITE TEMPLATE,ASP.NET WEB SERVICE,AJAX,PERSONAL
WEB STARTER,ETC
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / zedsonprabhakar
In repeater control there have a 5 Temjpleats
1.header temp
2.item temp
3.alternative temp
4.seperater temp
5.footer temp
if this is wrong post the answer
| Is This Answer Correct ? | 2 Yes | 3 No |
Explain the difference between or and orelse?
Write a code for sending an email from asp.net application.
AJAX - explain the concept and some controls like update panel, tabcontrol etc
How can I have a particular web page in an asp.net application which displays its own error page?
Which type of state management is provided by Query String in ASP.NET?
0 Answers Sans Pareil IT Services,
When does the application ONEND event handler fire?
1 Answers C Squared Systems, Verinon Technology Solutions,
What is validation in asp.net?
What is the Impprsonation?and what is the importence of that?
How many classes can a single .NET DLL contain?
Hey I am using asp.net mvc architecture. I creating one dropdownlist using <select id="State" name="State"></select> this is dynamic list.Its displaying properly. But in time of Edit.If i load a page dropdownlist is not displaying the item which is stored in table.
how to update data set?
What line in the following XML document will generate an error? <?xml version=?1.0?> <employees> <employee> <name>Bob Andcarrol</name> </employee> <employee> <name>Robert Burns</name> </employee> </employees> a) 6 b) 4 c) 1 d) There is no error
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)