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
How to apply themes in ASP.Net?
Themes can be used by a variety of methods. The following examples show you how you can define a theme named "SmokeAndGlass" in your application by different methods:

1. Page level
<%@ Page Theme="SmokeAndGlass" Language="C#"%>
2. Application level
<configuration> <system.web> <pages theme=“SmokeAndGlass” /> </system.web> </configuration>

Explain the System.CodeDom namespace in .Net Framework Class Library.
What are the channels in ASP.Net Remoting?
What is the difference between CTS and CLS in ASP.Net?
Can the action attribute of a server side <form> tag be set to a value and if not how can you possibly pass data to another page?
Which are two main keywords used for authorization in web.config file?
From which base class do the all Web forms inherit?
Which control would you use if you needed to make sure the values in two different controls matched?
What is System.Web.Mail?
Is XML case-sensitive?
What is ViewState? How is it encoded? Is it encrypted? Who uses ViewState?