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
What environment do I need to use generics?
To deploy and run code that uses generics you need version 2.0 or higher of the .Net runtime.
How is .NET able to support multiple languages?
A language should comply with the Common Language Runtime (CLR) standard to become a .Net language. In .Net, code is compiled to Microsoft Intermediate Language (MSIL). This is called as Managed Code. This Managed code is run in .Net environment. So after compilation to this IL the language is not a barrier. A code can call or use a function written in another language.
What are web Forms?
Web Forms are an ASP.Net technology that you use to create programmable Web pages. Web Forms render themselves as browser-compatible HTML and script, which allows any browser on any platform to view the pages. Using Web Forms, you create Web pages by dragging and dropping controls onto the designer and then adding code, similar to the way that you create Visual Basic forms. For more information, see ASP.NET Web Pages Overview.
How do you define the lease of the object?
The lifetime of the server object is determined by the lifetime lease. This is defined by implementing ILease interface when writing the class code.

OR

You can define the lease of the object by implementing the ILease interface at the code time.
How do you turn off cookies for one page in your site?
Use the Cookie.Discard Property which Gets or Sets the discard flag set by the server. When true, this property instructs the client application not to save the Cookie on the hard disk when a session ends.
What is System.Net.Mail?
System.Net.Mail is the namespace used to send email if you are using the .Net 2.0 (or higher) Framework.
What is System.Web.Mail?
System.Web.Mail (SWM) is the .Net namespace used to send email in .Net Framework applications. SWM contains three classes:
MailMessage – used for creating and manipulating the mail message contents.
MailAttachments – used for creating a mail attachment to be added to the mail message.
SmtpMail – used for sending email to the relay mail server.
Note: More information on the System.Web.Mail Namespace can be found on MSDN here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebmail.asp
FirstPreviousDisplaying page 35 of 36NextLast
Can I run my application which was built with a newer .Net Framework ( for example .Net 2.0, .Net 3.0, .Net 3.5 ) on a machine that has a lower .Net Framework ( for example .Net Framework 1.1 ) installed?
How do you secure your configuration files to be accessed remotely by unauthorized users?
Which control would you use if you needed to make sure the values in two different controls matched?
What is the default pool size of connection pooling in Asp.Net?
What is the default CommandTimeOut to wait for the command to execute in ASP.Net?
What’s the Unix name for a Windows service equivalent?
What is the Throughput?
How to find out what major and minor version of ASP.Net I am using?
How can you provide an alternating color scheme in a Repeater control?
what i do for load testing in . net application?