<< < 153 154 155 156 157 158 159 160 161 162 163 > >>   Sort: Date

Explain what relationship is between a Process, Application Domain, and Application?
Explain what relationship is between a Process, Application Domain, and Application? Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applicat...
2013-11-08, 1609👍, 0💬

What is job?
What is job? It can be defined as a task performed by a computer system. For example, printing a file is a job. Jobs can be performed by a single program or by a collection of programs.
2014-10-31, 1608👍, 0💬

What is the output for the following code snippet:..
What is the output for the following code snippet:.. What is the output for the following code snippet: public class testClass { public static void Main(string[] args) { System.Console.WriteLine(args[ 1]);}//end Main }//end class testClass * Compiler Error * Runtime Error * Hello C# world * None of ...
2014-08-25, 1607👍, 0💬

What’s the use of System.Diagnostics.Process class?
What’s the use of System.Diagnostics.Process class? By using System.Diagnostics.Process class, we can provide access to the files which are presented in the local and remote system. Example: System.Diagnostics.Process(” c:\mlaks\example.txt”)— local file System.Diagnostics.Process(” ...
2013-12-02, 1607👍, 0💬

What is State?
What is State? It is the property of the web forms. ASP.NET provides four types of state: Application state Session state Cookie state View state.
2014-10-01, 1606👍, 0💬

Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component?
Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component? When to Use Web Services: * Communicating through a Firewall When building a distributed application with 100s/1000s of users spread over multiple locations, there is always the ...
2014-01-20, 1606👍, 0💬

Why The JavaScript Validation Not Run on the Asp.Net Button But Run SuccessFully On The HTML Button
Why The JavaScript Validation Not Run on the Asp.Net Button But Run SuccessFully On The HTML Button The Asp.Net Button Is post backed on the server & not yet Submit & when It goes to the server its states is lost So if we r using javascript in our application so we always use the Input Butto...
2013-12-16, 1605👍, 0💬

What is DataWarehousing?
What is DataWarehousing? A data warehouse is a collection of data gathered and organized so that it can easily by analyzed, extracted, synthesized, and otherwise be used for the purposes of further understanding the data.
2014-10-29, 1604👍, 0💬

webFarm Vs webGardens
webFarm Vs webGardens A web farm is a multi-server scenario. So we may have a server in each state of US. If the load on one server is in excess then the other servers step in to bear the brunt. How they bear it is based on various models. 1. RoundRobin. (All servers share load equally) 2. NLB (econ...
2013-11-06, 1602👍, 0💬

Where on the Internet would you look for Web services?
Where on the Internet would you look for Web services? UDDI repositaries like uddi.microsoft.com, IBM UDDI node, UDDI Registries in Google Directory, enthusiast sites like XMethods.net.
2014-02-06, 1599👍, 0💬

Differences between Datagrid, Datalist and Repeater?
Differences between Datagrid, Datalist and Repeater? 1. Datagrid has paging while Datalist doesnt. 2. Datalist has a property called repeat. Direction = vertical/horizontal. (This is of great help in designing layouts). This is not there in Datagrid. 3. A repeater is used when more intimate control ...
2013-11-20, 1599👍, 0💬

What are the authentication methods in .NET?
What are the authentication methods in .NET? There are 4 types of authentications. 1.WINDOWS AUTHENTICATION 2.FORMS AUTHENTICATION 3.PASSPORT AUTHENTICATION 4.NONE/CUSTOM AUTHENTICATION The authentication option for the ASP.NET application is specified by using the tag in the Web.config file, as sho...
2013-11-26, 1598👍, 0💬

Describe session handling in webform. How does it work and what are the limits?
Describe session handling in webform. How does it work and what are the limits? Session management in ASP.NET can be done in two ways: Using Cookies Encoding of URLs with Session ID
2014-11-05, 1597👍, 0💬

How to manage pagination in a page?
How to manage pagination in a page? Using pagination option in DataGrid control. We have to set the number of records for a page, then it takes care of pagination by itself.
2013-10-02, 1597👍, 0💬

The methods in C# can be overloaded in which of the following ways
The methods in C# can be overloaded in which of the following ways The methods in C# can be overloaded in which of the following ways * By having the same method name and specifying different number of parameters * By giving different method names and same number of parameters * By having the same m...
2014-07-07, 1596👍, 0💬

Which two properties are on every validation control?
Which two properties are on every validation control? ControlToValidate & ErrorMessage properties
2014-02-03, 1596👍, 0💬

What is Serialization in .NET?
What is Serialization in .NET? Anwer1 The serialization is the process of converting the objects into stream of bytes. they or used for transport the objects(via remoting) and persist objects(via files and databases) Answer2 When developing smaller applications that do not have a database (or other ...
2013-12-02, 1595👍, 0💬

Does anyone have a tool for converting old-style C programs to ANSI C?
Does anyone have a tool for converting old-style C programs to ANSI C, or vice versa, or for automatically generating prototypes? Two programs, protoize and unprotoize, convert back and forth between prototyped and ``old style'' function definitions and declarations. (These programs do not handle fu...
2015-11-25, 1593👍, 0💬

Difference between Class And Interface
Difference between Class And Interface Class is logical representation of object. It is collection of data and related sub procedures with defination. Interface is also a class containg methods which is not having any definations. Class does not support multiple inheritance. But interface can suppor...
2013-12-04, 1593👍, 0💬

What’s a bubbled event?
What’s a bubbled event? When you have a complex control, likeDataGrid, writing an event processing routine for each object (cell, button,row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of itsconstituents.
2014-03-06, 1592👍, 0💬

What tags do you need to add within the asp:datagrid tags to bind columns manually?
What tags do you need to add within the asp:datagrid tags to bind columns manually? Answer1: Set AutoGenerateColumns Property to false on the datagrid tag Answer2: tag and either or tags (with appropriate attributes of course)
2014-02-11, 1592👍, 0💬

How do you create a permanent cookie?
How do you create a permanent cookie? Setting the Expires property to MinValue means that the Cookie never expires.
2014-02-04, 1591👍, 0💬

Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines? The Application_Start event is guaranteed to occur only once throughout the lifetime of the application. It’s a good place to initialize global variables. For example, you might w...
2014-01-21, 1586👍, 0💬

What are the different types of replication? How are they used?
What are the different types of replication? How are they used? Replication is used for distributing data and the execution of stored procedures across an enterprise. The replication technology allows you to make duplicate copies of your data, move those copies to different locations, and synchroniz...
2014-11-17, 1585👍, 0💬

<< < 153 154 155 156 157 158 159 160 161 162 163 > >>   Sort: Date