Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers/ FAQs
Can you edit data in the Repeater control?
No, It just reads and display the information from its data source.
Which template you must provide in order to display data in the Repeater control?
ItemTemplate.
How can you provide an alternating color scheme in a Repeater control?
For this you can use AlternatingItemTemplate.
From which base class do the all Web forms inherit?
Page class
How many classes a single .Net DLL can contain?
A single .Net DLL can contain as many classes as you want.
What does IsPostBack Property of the Web Form?
IsPostBack property of the page allows to check whether the page is being loaded for the first time.

False value means first time.
True means result of round trip.

What is the Code Behind feature of ASP.Net?
Code Behind feature of ASP.Net devides the ASP.Net page file into two files:

1. One contains presentation logic (.aspx file).
2. Code Behind file contains all applcation logic (.aspx.cs or .aspx.vb)

FirstPreviousDisplaying page 2 of 36NextLast
How to get the count of records in the Database table using the DataSet?
Why are there five tracing levels in System.Diagnostics.TraceSwitcher?
Which control would you use if you needed to make sure the values in two different controls matched?
Explain the System.Configuration namespace in .Net Framework Class Library.
How to convert TextBox value into a DateTime variable?
What is the use of System.Diagnostics.Process class in ASP.Net?
Which properties of the textbox cannot be changed at runtime?
Can I avoid using the garbage collected heap?
How to find out browser version i am using in ASP.Net?
What is Hashtable in ASP.Net?