What are Master pages? How to define a Master page?
Answers were Sorted based on User's Feedback
Answer / bachi
ASP.NET master pages allow you to create a consistent layout
for the pages in your application. A single master page
defines the look and feel and standard behavior that you
want for all of the pages (or a group of pages) in your
application. You can then create individual content pages
that contain the content you want to display. When users
request the content pages, they merge with the master page
to produce output that combines the layout of the master
page with the content from the content page.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / guest
Master Page: Most of the website pages with in an appl have
common info
say as Menu, then we create a master page which can be
shared by most aspx content pages.
Master page is a template that can be used as a foundation
to all other ASP>Net content pages.
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / rajesh kadam
Asp.net master page is used to look and fill is comman in
all pages.it defines content place holder
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
Is This Answer Correct ? | 0 Yes | 1 No |
suppose we have two object;obj1 and obj2 can we assign obj2 to one1; and if yes; then after assigning suppose we delete obj2 then obj1 will retain obj2 value or not.
How do you do exception management
What is a web server? What are the load limits in it?
what are Httpmodule and HttpHandler?
Describe a diffgram ? Write any one use of that?
You need to retrieve data from a Microsoft SQL Server 2000. Currently you are using an oleDbConnection object to connect to the database server. You need to be able to retrieve the data from the database server in XML format. Which approach would be the most efficient? Select all that apply. Each answer constitutes part of the whole answer. a) Change to the SQL .NET provider. b) Use the ExecuteXmlReader() method of the xxxCommand object c) Use the DOM to create the XML document. d) Use the XmlDocument.Load() method to create the XML Document.
SessionState - type of sessionstate and when and how to use it
which is best possible way to add data source to data grid when the data is huge(10 lack recored)how to edit a perticular row
When a dropdownlist has been added by some records and it has been binded why it is not executing i'm facing this error pls help me ? if (is!pageposback) { arraylist books = new arraylist; books.add ("gone with the wind"); books.add ("rahulsriramprakash"); books.add ("vishal"); dropdowndisplay.datasource=books; dropdowndisplay.databind(); } The error is : 1) The dropdowndisplay does not exist.
What is the request flow used for asp.net mvc framework? : asp.net mvc
What is SOAP, UDDI and WSDL ?
2 Answers Infosys, Network, TCS, Wipro,
How to implement form based authentication in asp.net application?