Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what r the Templeats in ASP.net?

Answers were Sorted based on User's Feedback



what r the Templeats in ASP.net?..

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

what r the Templeats in ASP.net?..

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

what r the Templeats in ASP.net?..

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

what r the Templeats in ASP.net?..

Answer / shibin jayadev

ASP.NET WEBSITE TEMPLATE,ASP.NET WEB SERVICE,AJAX,PERSONAL
WEB STARTER,ETC

Is This Answer Correct ?    1 Yes 1 No

what r the Templeats in ASP.net?..

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

Post New Answer

More ASP.NET Interview Questions

Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process?

1 Answers   Patni, Perot Systems, Sedna Technology,


Why mvc is faster than asp.net? : Asp.Net MVC

0 Answers  


Is viewstate enabled by default?

0 Answers  


Name the namespace which is used by ado.net?

0 Answers  


how to write code for role based security

2 Answers  


Whats MSIL, and why should my developers need an appreciation of it if at all?

3 Answers   Siebel,


what are the types of ASP objects ?

7 Answers   Satyam,


What is the difference between the response.write() and response.output.write() methods?

0 Answers  


Explain why it is useful to use mvc instead of webforms? : asp.net mvc

0 Answers  


page life cycle of asp.net.

4 Answers  


Explain diff. Between friend and protected friend?

0 Answers  


Explain the difference between server control and html control.

0 Answers  


Categories