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

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

What is reflection?
.NET INTERVIEW QUESTIONS - What is reflection? All .NET assemblies have metadata information stored about the types defined in modules. This metadata information can be accessed by mechanism called as “Reflection”.System. Reflection can be used to browse through the metadata information.Using reflec...
2010-03-30, 5121👍, 0💬

What is element and attributes in XML
What is element and attributes in XML? In the below example invoice is the element and the invnumber the attribute. &lt;invoice invnumber=1002>&lt;/invoic e>
2007-10-31, 5120👍, 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, 5108👍, 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, 5101👍, 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, 5100👍, 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, 5097👍, 0💬

How to disable client side script in validators
How to disable client side script in validators? Set EnableClientScript to false.
2007-10-24, 5096👍, 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, 5095👍, 0💬

What is Cache Callback in Cache
What is Cache Callback in Cache ? Cache object is dependent on its dependencies example file based, time based etc...Cache items remove the object when cache dependencies change.ASP.NET provides capability to execute a callback method when that item is removed from cache.
2007-10-23, 5095👍, 0💬

How can we fine tune the command object when we are expecting a single row
How can we fine tune the command object when we are expecting a single row ? Again CommandBehaviour enumeration provides two values SingleResult and SingleRow. If you are expecting a single value then pass “CommandBehaviour.SingleResult ”and the query is optimized accordingly, if you are expecting s...
2007-10-24, 5092👍, 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, 5090👍, 0💬

What is CSS
What is CSS? With CSS you can format a XML document.
2007-10-31, 5086👍, 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, 5086👍, 0💬

Which class does the remote object has to inherit
Which class does the remote object has to inherit ? All remote objects should inherit from System.MarshalbyRefObject.
2007-10-23, 5085👍, 0💬

Calling unmanaged function from within managed code
Calling unmanaged function from within managed code When we use windows API in Dot Net?Is it managed or un managed code? Have you ever tried to called an unmanaged function (eg: MessageBox function inside the User32.dll ) with in a managed code? Let's try to do that. Open up your Visual studio 2005 ...
2009-03-06, 5084👍, 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, 5082👍, 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, 5079👍, 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, 5076👍, 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, 5073👍, 0💬

How can you avoid deadlock in threading
How can you avoid deadlock in threading? A good and careful planning can avoid deadlocks.There are so many ways Microsoft has provided by which you can reduce deadlocks example Monitor, Interlocked classes, Wait handles, Event raising from one thread to other thread, ThreadState property which you c...
2007-10-22, 5056👍, 0💬

What are the technical limitations of COM Interop?
Managed Code and Unmanaged Code related ASP.NET - - What are the technical limitations of COM Interop? The .NET Framework was developed to address the limitations of COM. Because of this evolution, there are limits to the .NET features that you can use from COM. The following list describes these li...
2009-04-14, 5052👍, 0💬

How do you start a project
How do you start a project?
2007-10-30, 5052👍, 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, 5051👍, 0💬

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