<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   Sort: Date

In CAO model for client objects to be created by “NEW” keyword
In CAO model for client objects to be created by “NEW” keyword what should we do? Remoting Clients and Remoting Server can communicate because they share a common contract by implementing Shared Interface or Base Class (As seen in previous examples). But according to OOP’s concept we can not create...
2007-10-23, 5471👍, 0💬

How can we create custom controls in ASP.NET
How can we create custom controls in ASP.NET ? User controls are created using .ASCX in ASP.NET. After .ASCX file is created you need to two things in order that the ASCX can be used in project:. ? Register the ASCX control in page using the ? Now to use the above accounting footer in page you can u...
2007-10-24, 5468👍, 0💬

Can you explain what is DCOM
Can you explain what is DCOM ? DCOM differs from COM in that it allows for creating objects distributed across a network, a protocol for invoking that object’s methods, and secures access to the object. DCOM provides a wrapper around COM, hence it is a backwards compatible extension. DCOM uses Remot...
2007-10-22, 5465👍, 0💬

What is Delay signing
What is Delay signing ? During development process you will need strong name keys to be exposed to developer which is not a good practice from security aspect point of view.In such situations you can assign the key later on and during development you an use delay signing Following is process to dela...
2007-10-22, 5456👍, 0💬

What are benefits and limitations of using Viewstate for state management?
.NET INTERVIEW QUESTIONS - What are benefits and limitations of using Viewstate for state management? Following are the benefits of using Viewstate :- * No server resources are required because state is in a structure in the page code. * Simplicity. * States are retained automatically. * The values ...
2009-07-07, 5449👍, 0💬

What is Query String and What are benefits and limitations of using
What is Query String and What are benefits and limitations of using Query Strings? A query string is information sent to the server appended to the end of a page URL. Following are the benefits of using query string for state management:- ã No server resources are required. The query string contain...
2007-10-23, 5449👍, 0💬

What is Thread.Join() in threading
What is Thread.Join() in threading ? There are two versions of Thread.Join :- ? Thread.join(). ? Thread.join(Integer) this returns a Boolean value. The Thread.Join method is useful for determining if a thread has completed before starting another task. The Join method waits a specified amount of tim...
2007-10-22, 5445👍, 0💬

What is event bubbling
What is event bubbling ? Server controls like Datagrid, DataList, Repeater can have other child controls inside them. Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a d...
2007-10-24, 5443👍, 0💬

What is the main difference between Gridlayout and FlowLayout
What is the main difference between Gridlayout and FlowLayout ? GridLayout provides absolute positioning for controls placed on the page. Developers that have their roots in rich-client development environments like Visual Basic will find it easier to develop their pages using absolute positioning, ...
2007-10-24, 5436👍, 0💬

What is difference between abstract classes and
What is difference between abstract classes and interfaces? Following are the differences between abstract and interfaces :- ? Abstract classes can have concrete methods while interfaces have no methods implemented. ? Interfaces do not come in inheriting chain, while abstract classes come in inherit...
2007-10-23, 5434👍, 0💬

If we want to make sure that no one has tampered with ViewState, how do we ensure it
If we want to make sure that no one has tampered with ViewState, how do we ensure it? Using the @Page directive EnableViewStateMac to True.
2007-10-24, 5433👍, 0💬

When does page split occurs ?
What is fillfactor ? The 'fill factor' option specifies how full SQL Server will make each index page. When there is no free space to insert new row on the index page, SQL Server will create new index page and transfer some rows from the previous page to the new one. This operation is called page sp...
2007-10-25, 5431👍, 0💬

What is the difference between XML and HTML
What is the difference between XML and HTML? XML describes data while HTML describes how the data should be displayed. So HTML is about displaying information while XML is about describing information.
2007-10-31, 5424👍, 0💬

What is the use of attribute
What is the use of attribute ? This attribute works like a compatibility option. As mentioned before ASP worked in STA model and ASP.NET works in MTA model, but what if your ASP.NET application is using a VB COM component. In order that VB COM runs properly in ASP.NET threading model we have to set ...
2007-10-24, 5411👍, 0💬

You find that one of your validation is very complicated and does not fit in any of the validators, what will you do
You find that one of your validation is very complicated and does not fit in any of the validators, what will you do ? Best is to go for CustomValidators. Below is a sample code for a custom validator which checks that a textbox should not have zero value &lt;asp:CustomValidator id="CustomValida...
2007-10-24, 5408👍, 0💬

How can we check that some changes have been made to dataset since it was loaded
How can we cancel all changes done in dataset ? or How do we get values which are changed in a dataset ? For tracking down changes Dataset has two methods which comes as rescue “GetChanges “and “HasChanges”. GetChanges Returns dataset which are changed since it was loaded or since Acceptchanges was...
2007-10-24, 5406👍, 0💬

What are the different types of replication supported by SQL SERVER
What are the different types of replication supported by SQL SERVER ? There are three types of replication supported by SQL SERVER Snapshot Replication. Snapshot Replication takes snapshot of one database and moves it to the other database. After initial load data can be refreshed periodically. The ...
2007-10-25, 5403👍, 0💬

How to disable client side script in validators
How to disable client side script in validators? Set EnableClientScript to false.
2007-10-24, 5399👍, 0💬

Which are the namespaces in .NET used for XML
Which are the namespaces in .NET used for XML? “System.xml.dll” is the actual physical file which has all XML implementation. Below are the commonly used namespaces: System.Xml System.Xml.Schema System.Xml.XPath System.Xml.Xsl
2007-10-31, 5394👍, 0💬

Can you explain different software development life cycles - part I
Can you explain different software development life cycles ? Note:- This questions is asked to test that as a project manager do you have a know how of all the project life cycles.In PMP (Project management plan) you have to specify saying which software development model you will follow. Definitely...
2007-10-30, 5390👍, 0💬

What is a CLS
What is a CLS(Common Language Specification)? This is a subset of the CTS which all .NET languages are expected to support. It was always a dream of Microsoft to unite all different languages in to one umbrella and CLS is one step towards that. Microsoft has defined CLS which are nothing but guideli...
2007-10-22, 5390👍, 0💬

What is a CLR?
.NET INTERVIEW QUESTIONS - What is a CLR? Full form of CLR is Common Language Runtime and it forms the heart of the .NET framework. All Languages have runtime and its the responsibility of the runtime to take care of the code execution of the program. For example VC++ has MSCRT40.DLL,VB6 has MSVBVM6...
2010-02-09, 5385👍, 0💬

Who is a stakeholder
Who is a stakeholder ? A stakeholder is anyone who has something to gain or lose as a result of the completion or failure of this project or phase Note:- It’s not only the end customer the stakeholder. Project managers, Project Lead, even programmers, testing department etc. are stake holders of pro...
2007-10-30, 5382👍, 0💬

What are different IIS isolation levels
What are different IIS isolation levels? IIS has three level of isolation:- LOW (IIS process):- In this main IIS process and ASP.NET application run in same process. So if any one crashes the other is also affected. Example let’s say (well this is not possible) I have hosted yahoo, hotmail .amazon a...
2007-10-24, 5375👍, 0💬

<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   Sort: Date