<< < 32 33 34 35 36 37 38 39 40 41 > >>   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, 1569👍, 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, 1569👍, 0💬

How many types of cookies are there?
How many types of cookies are there? Answer1 Two type of cookeies. a) single valued eg request.cookies(”UserName” ).value=”Mahesh”b)Multivalued cookies. These are used in the way collections are used. e.g. request.cookies(”CookiName†)(”UserName”)=”Mahesh†request....
2014-10-03, 1568👍, 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, 1565👍, 0💬

NET is Compile Time OR RunTime Environment?
NET is Compile Time OR RunTime Environment? .Net’s framework has CLS,CTS and CLR.CTS checks declartion of types at the time when u write code and CLS defines some rules and restrictions.and CLR comile everything at runtime with following benefits: Vastly simplified development Seamless integratio...
2014-03-03, 1564👍, 0💬

What will be the output of the following code snippet?
What will be the output of the following code snippet? What will be the output of the following code snippet? using System; class MainClass { static void Main( ) { new MainClass().Display( 3.56 ); } private void Display( float anArg ) { Console.Write( “{0} {1}”, anArg.GetType(), anArg ); } dou...
2014-09-02, 1563👍, 0💬

What is the standard you use to wrap up a call to a Web service?
What is the standard you use to wrap up a call to a Web service? Several possible answers depending on your interpretation of the quesiton, but I think you were aiming for SOAP (with the caveat that this is MS’s version of SOAP)
2014-02-13, 1563👍, 0💬

Explain differences between server.transfer and server.execute method?
Explain differences between server.transfer and server.execute method? Answer1: server.transfer-&gt; transefers the server’s control to the requested page given in the parameter. server.Execute-&gt; executes the requested page from the current page itself,with no change in the address bar...
2014-10-22, 1562👍, 0💬

The RangeValidator control supports the following datatype ...
The RangeValidator control supports the following datatype ... The RangeValidator control supports the following datatype * Integer and String * Integer, Float, String, XMLDatatypes * Integer, String and Date * Integer, Boolean, Short, String and Date Integer, String and Date
2014-07-09, 1562👍, 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, 1562👍, 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, 1561👍, 0💬

The data from an XSL Transform with XmlReader can be returned in one of the following ways
The data from an XSL Transform with XmlReader can be returned in one of the following ways The data from an XSL Transform with XmlReader can be returned in one of the following ways * objReader = objXslT.Transform(objNav, nothing) * objXslT.Transform(objNav, nothing) * objReader = objXslT.Transform(...
2014-08-01, 1560👍, 0💬

Explain differences between ADO and DAO.
Explain differences between ADO and DAO. dao- can access only access database ado- can access any databases
2014-10-03, 1558👍, 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, 1558👍, 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, 1557👍, 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, 1557👍, 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, 1557👍, 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, 1556👍, 0💬

On order to get assembly info which namespace we should import?
On order to get assembly info which namespace we should import? System.Reflection Namespace
2014-09-08, 1556👍, 0💬

Which two properties are on every validation control?
Which two properties are on every validation control? ControlToValidate & ErrorMessage properties
2014-02-03, 1555👍, 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, 1555👍, 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, 1553👍, 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, 1553👍, 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, 1553👍, 0💬

<< < 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Date