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

What is the difference between ASP and ASP.NET?
What is the difference between ASP and ASP.NET? ASP is interpreted. ASP.NET Compiled event base programming. Control events for text button can be handled at client javascript only. Since we have server controls events can handle at server side. More error handling. ASP .NET has better language supp...
2013-11-04, 1600👍, 0💬

Should validation (did the user enter a real date) occur server-side or client-side? Why?
Should validation (did the user enter a real date) occur server-side or client-side? Why? Client-side validation because there is no need to request a server side date when you could obtain a date from the client machine.
2014-01-16, 1599👍, 0💬

What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?
What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state? Web pages are recreated each time the page is posted to the server. In traditional Web programming, this would ordinarily mean that all information associated with the page and the controls ...
2014-02-12, 1598👍, 0💬

True or False: A Web service can only be written in .NET.?
True or False: A Web service can only be written in .NET.? False.
2014-02-05, 1598👍, 0💬

What is the base class of .NET?
What is the base class of .NET? Base class provides a base set of methods that all derived classes can use
2013-12-09, 1598👍, 0💬

What’s SingleCall activation mode used for?
What’s SingleCall activation mode used for? If the server object is instantiated for responding to just one single request, the request should be made in SingleCall mode.
2013-11-14, 1598👍, 0💬

How do u call and execute a stored procedure in .NET?
How do u call and execute a stored procedure in .NET? system.Data; system.Data.SqlClient; SqlConnection sqCon = new SqlConnection(”connection string”); SqlCommand sqCmd = new SqCmd(); sqCmd.Connection = sqCon; sqCmd.CommandText = procedure_name; sqCmd.CommandType = CommandType.StoredProcedure;.. .
2014-11-14, 1597👍, 0💬

How to achieve Polymorphism in VB.Net?
How to achieve Polymorphism in VB.Net? We can achieve polymarphism in .Net i.e Compile time polymarphism and Runtime polymarphism. Compiletime Polymarphism achieved by method overloading. Runtime polymarphism achieved by Early Binding or Late Binding. Provide the function pointer to the object at co...
2013-12-04, 1596👍, 0💬

When displaying fonts, what’s the difference between pixels, points and ems?
When displaying fonts, what’s the difference between pixels, points and ems? A pixel is the lowest-resolution dot the computer monitor supports. Its size depends on user’s settings and monitor size. A point is always 1/72 of an inch. An em is the number of pixels that it takes to display the l...
2013-11-25, 1596👍, 0💬

What is connection pooling and how do you make your application use it?
What is connection pooling and how do you make your application use it? Opening database connection is a time consuming operation. Connection pooling increases the performance of the applications by reusing the active database connections instead of create new connection for every request. Connectio...
2013-12-30, 1594👍, 0💬

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, 1592👍, 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, 1592👍, 0💬

What is view state?
What is view state? The web is stateless. But in ASP.NET, the state of a page is maintained in the in the page itself automatically. How? The values are encrypted and saved in hidden controls. this is done automatically by the ASP.NET. This can be switched off / on for a single control
2014-01-13, 1591👍, 0💬

What is Response object? How is it related to ASP’s Response object?
What is Response object? How is it related to ASP’s Response object? Response object allows the server to communicate with the client(browser). It is useful for displaying information to the user (or) redirecting the client. Eg: Response.Write(”Hello World”)
2013-12-12, 1591👍, 0💬

re-clarification of object based:
re-clarification of object based: VB6 DOES support polymorphism and interface inheritance. It also supports the “Implements” keyword. What is not supported in vb6 is implementation inheritance. Also, from above, vb6 DOES “provides access to third-party controls like COM, DCOM ” That is ...
2013-12-03, 1591👍, 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, 1589👍, 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, 1589👍, 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, 1588👍, 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, 1588👍, 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, 1588👍, 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, 1588👍, 0💬

Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using 2.0 ?
Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using 2.0 ? Can you have two applications on the same machine one which is using .NET Framework 1.1 and the other using 2.0 ? * Yes * No * Depends on System configuration Yes
2014-03-14, 1587👍, 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, 1586👍, 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, 1585👍, 0💬

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