What is the need of wcf and wPF
DirectX had this excellent feature of using hardware acceleration. Microsoft wanted to develop UI elements like textboxes, button,grids etc using the DirectX technology by which they can exploit the h...
What languages does the .Net framework support?
A .NET Framework assembly containing resources specific to a given language. Using satellite assemblies, you can place the resources for different languages in different assemblies, and the correct assembly is loaded into memory only if the user elects to view the application in that language
My dear friends,
According to Microsoft the .net Framework Supports 61 programming languages .In that Microsoft has developed 9 programming languages.
Usage of dataset and data bindings
How can we bind temporary created data table of one win form into other win form controls?
With the help of Shared(VB.Net)/Static(C#.Net) dataset or datatable object initialized in one form could be used in another form.
Define clr and base class libraries.
clr = common language runtime works like the heart works fr any being........
What is the extention of the .Net
Network enable technology(.Net)
New Emerging Technology
Difference between static page and dynamic page?
Static pagesquick and easy to put together, even by someone who doesn't have much experience. Ideal for demonstrating how a site will look. Cache friendly, one copy can be shown to many people. Dynamic pagesoffers highly personalized and customised visitor options. Database access improves the personalized...
Static Websites A static site is a website that is written entirely using HTML. Each web page is a separate document and there are no databases or external files that are drawn upon. This means that...
Static page generally does not have server side coding.Where as Dynamic page has server side coding.WHenever the html code together with scripts that function from the client side is involves sta...
It is the object of SqlConnection class we can provide any naming convention according to our interest
This seems naming convention, we can also use con with database name prefix from which we are seeking connection
What is the latest version of .Net
.net 4.5 is the latest version
4.5 is the new version of .net
What is the difference between ASP.Net and asp
Difference between ASP and ASP.NET ASP.NET: ASP.Net web forms have a code behind file which contains all event handling code. ASP.Net web forms inherit the class written in code behind. ASP.Net web f...
Asp.net is a next of Asp but it's not a upgraded version of Asp. Asp is a interpreted language based on a scripting language like jscripts or vbscript.Asp limited development and debugging tools avail...
Can we raise_application_error in exception block?? If we use what will happen?
Get data from SQL server to ASP.Net when application crashes
ASP.Net web application sent a request to get some result set to sq server. The query is processed over there and it sends the result set. When it is on its way, ASP.Net application crashed because of some sort of reason. how to get it back to the application? recently, I faced 2 years experienced interview please...
Comparison between two strings
Write a program to read two strings from the keyboard using readline statement and compare them ignoring the case?
Here is the answer: "csharp using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.Write(...
What is the concept of partial class in .Net2.0?
Partial class is to split the class into multiple files
Partial class allows developers to split a class into multiple files.ex:public partial class A{ A() { /...
What will happen to sessions when a server crash?
If session state service is used for session state maintainenece, then even if the server crashes, the session state will not be lost as it is not running in the same process as ASP.NET. but if in process mode is used, then the session info will be lost.
A crash or (system crash) in computing is a condition where a program (either an application or part of the operating syatem) stops performing its expected function and also stops responding to othe...
What is code access security (cas)?
Code access security (CAS) is a new feature provided by the .NET Common Language Runtime. CAS is a security model that lets you grant or deny execution permissions to an assembly according to its &quo...
Identity permissions control code access from one assembly to another. You can use identity permissions, which are a subset of code access permissions, either declaratively or imperatively
How will you bind gridview particular column in datatable using windows application?
Hope we can bind a particular column in a GridView by writing the code for Connection and DataAdapters in Sql or Oledb Connection and then adding the code,
GridView1.DataSource=ds.Tables[0].DefaultView;
GridView1.Columns[1].DataBind();
Try whether it works.
IDE enables the property or method to be completed through Intelli Sense. It knows the classes like Forms, Buttons and their appropriate properties and methods. This it displays...
Dear friend, Reflection is all about reading metadata from assemblies. And this metadata is generated only while compiling. IDE's intellisense works fine even before any compilation...How it is wo...
View State is used to maintain the values of Controls in a particular webpage during its subsecutive postbacks in the same page. It is generally stored in the Hidden field control. It...
A ViewState has the details or values of the control in encrypted format. This encrypted details are passed to and fro between the requests to server and hence help in retaining the state of the contr...
Through the satellite assembly we can change the language of browser
A .NET Framework assembly containing resources specific to a given language. Using satellite assemblies, you can place the resources for different languages in different assemblies, and the correct as...