<< < 151 152 153 154 155 156 157 158 159 160 161 > >>   Sort: Date

What is a Windows Service and how does its lifecycle differ from a “standard” EXE?
What is a Windows Service and how does its lifecycle differ from a “standard” EXE? Windows Service applications are long-running applications that are ideal for use in server environments. The applications do not have a user interface or produce any visual output; it is instead used by other p...
2014-02-14, 1587👍, 0💬

How do you validate the controls in an ASP .NET page?
How do you validate the controls in an ASP .NET page? Using special validation controls that are meant for this. We have Range Validator, Email Validator.
2014-01-13, 1587👍, 0💬

How many types of exception handlers are there in .NET?
How many types of exception handlers are there in .NET? Answer 1: From MSDN&gt;gt; “How the Runtime Manages Exceptions” http://msdn.microsoft.com/libr ary/default.asp?url=/library/en-us/cpguide/htm l/cpconexceptionsoverview.aspThe exception information table represents four types of except...
2013-12-16, 1587👍, 0💬

Main differences between ASP and ASP.NET.
Main differences between ASP and ASP.NET. Answer 1: 1. ASP: Code is Interpreted ASP.NET: Code is Compiled 2. ASP: Business Logic and Presentation Logic are in a single file ASP.NET: Business Logic and Presentation Logic are in separate files (.cs or .vb) and (.aspx) respectively. 3. ASP: No Web Serv...
2013-12-13, 1586👍, 0💬

What security measures exist for .NET Remoting in System.Runtime.Remoting?
What security measures exist for .NET Remoting in System.Runtime.Remoting? None. Security should be taken care of at the application level. Cryptography and other security techniques can be applied at application or server level.
2013-11-13, 1585👍, 0💬

What is smart navigation?
What is smart navigation? The cursor position is maintained when the page gets refreshed due to the server side validation and the page gets refreshed.
2014-01-10, 1584👍, 0💬

What data type does the RangeValidator control support?
What data type does the RangeValidator control support? Integer,String and Date.
2014-03-07, 1583👍, 0💬

What’s the difference between Response.Write() andResponse.Output.Write()?
What’s the difference between Response.Write() andResponse.Output.Write()? The latter one allows you to write formattedoutput.
2014-03-04, 1583👍, 0💬

Can you explain what inheritance is and an example of when you might use it?
Can you explain what inheritance is and an example of when you might use it? Inheritance is a fundamental feature of an object oriented system and it is simply the ability to inherit data and functionality from a parent object. Rather than developing new objects from scratch, new code can be based o...
2014-01-22, 1583👍, 0💬

What is ADO .NET and what is difference between ADO and ADO.NET?
What is ADO .NET and what is difference between ADO and ADO.NET? ADO.NET is stateless mechanism. I can treat the ADO.Net as a separate in-memory database where in I can use relationships between the tables and select insert and updates to the database. I can update the actual database as a batch.
2014-01-15, 1583👍, 0💬

What is the comment syntax for C#’s XML-based documentation?
What is the comment syntax for C#’s XML-based documentation? What is the comment syntax for C#’s XML-based documentation? * /** and **/ * //# * /// * //* ///
2014-08-04, 1582👍, 0💬

Where would you use an iHTTPModule, and what are the limitations of anyapproach you might take in implementing one?
Where would you use an iHTTPModule, and what are the limitations of anyapproach you might take in implementing one? One of ASP.NET’s most useful features is the extensibility of the HTTP pipeline, the path that data takes between client and server. You can use them to extend your ASP.NET applicat...
2014-01-27, 1582👍, 0💬

I need a random number generator.
I need a random number generator. The Standard C library has one: rand. The implementation on your system may not be perfect, but writing a better one isn't necessarily easy, either. Here is a portable C implementation of the ``minimal standard'' generator : #define a 16807 #define m 2147483647 #def...
2015-08-03, 1581👍, 0💬

Name atleast three methods of response object other than Redirect.
Name atleast three methods of response object other than Redirect. Answer1 a) Response.Clear( ) Clears the content of the current output stream. b) Response.Close( ) Closes the network socket for the current response. c) Response.End( ) Stops processing the current request and sends all buffered con...
2014-09-29, 1580👍, 0💬

What are remotable objects in .NET Remoting?
What are remotable objects in .NET Remoting? Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an e...
2013-11-12, 1579👍, 0💬

What does WSDL stand for?
What does WSDL stand for? Web Services Description Language
2014-02-06, 1578👍, 0💬

Which method do you invoke on the DataAdapter control to load your generated dataset with data?
Which method do you invoke on the DataAdapter control to load your generated dataset with data? System.Data.Common.DataAdapter .Fill(System.Data.DataSet);If my DataAdapter is sqlDataAdapter and my DataSet is dsUsers then it is called this way: sqlDataAdapter.Fill(dsUsers);
2014-01-28, 1576👍, 0💬

Explain assemblies.
Explain assemblies. Answer 1: Assemblies are similar to dll files. Both has the reusable pieces of code in the form of classes/ functions. Dll needs to be registered but assemblies have its own metadata. Answer 2: Assembly is a single deployable unit that contains information about the implementatio...
2013-12-09, 1576👍, 0💬

What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"?
What’s the difference between Codebehind="MyCode.aspx.cs" andSrc="MyCode.aspx.cs"? CodeBehind is relevant to Visual Studio.NET only.
2014-03-06, 1574👍, 0💬

What is the transport protocol you use to call a Web service?
What is the transport protocol you use to call a Web service? Answer1: SOAP. Transport Protocols: It is essential for the acceptance of Web Services that they are based on established Internet infrastructure. This in fact imposes the usage of of the HTTP, SMTP and FTP protocols based on the TCP/IP f...
2014-02-05, 1574👍, 0💬

Can you configure a .NET Remoting object via XML file?
Can you configure a .NET Remoting object via XML file? Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config.
2013-11-18, 1574👍, 0💬

What’s Singleton activation mode?
What’s Singleton activation mode? A single object is instantiated regardless of the number of clients accessing it. Lifetime of this object is determined by lifetime lease.
2013-11-15, 1574👍, 0💬

What’s a proxy of the server object in .NET Remoting?
What’s a proxy of the server object in .NET Remoting? It’s a fake copy of the server object that resides on the client side and behaves as if it was the server. It handles the communication between real server object and the client object. This process is also known as marshaling.
2013-11-11, 1573👍, 0💬

Whats an assembly?
Whats an assembly? Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logi...
2014-01-23, 1572👍, 0💬

<< < 151 152 153 154 155 156 157 158 159 160 161 > >>   Sort: Date