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
 Latest Postings - ASP.Net Interview Questions and Answers
Why Can not I run my .Net Application without .Net Framework?
All the .Net libraries you call within your code are not compiled into your assembly, and you need these assemblies in the destination machine, in order for it to run you need .Net Framework installed.\r\n

A program compiled in C# or VB is not a program in native code, it is a Pre-compilation in a Intermediate Language (MSIL). When you run this program the .Net Runtime, makes the final compilation to native code for the platform on which it is executed - this is called Just-In-Time compilation.

What is difference between ExecuteReader, ExecuteNonQuery and ExecuteScalar?
  • ExecuteReader : Use for accessing data. It provides a forward-only, read-only, connected recordset.
  • ExecuteNonQuery : Use for data manipulation, such as Insert, Update, Delete.
  • ExecuteScalar : Use for retriving 1 row 1 col. value., i.e. Single value. eg: for retriving aggregate function. It is faster than other ways of retriving a single value from DB.
What is the default maximum size of the file that can be uplaoded by the ASP.Net application.
4096 KB (4MB)
Can I lock a configuration setting so that a Web.config file that appears lower in the hierarchy cannot override it?
Yes. By setting the location element Override attribute to false, you can lock a specific setting so that it does not inherit settings from below.
How are ASP.Net configuration files secured against unauthorized access?
ASP.Net configures IIS to deny access to any user that requests access to the Machine.config or Web.config files.
How does non-deterministic garbage collection affect my code?
Some ASP.Net acronyms are...
What is the role of Global.asax?
Can you change a Master Page dynamically at runtime? How?
How to find out IP Address of the host in ASP.Net?
Explain the System namespace in .Net Framework Class Library
What is DataList Control in ASP.Net?
In order to get assembly info which namespace we should have import?
Why use strong names in ASP.Net?
How To Find Number of Days between two Dates in C# Asp.Net?