Latest Answer: The code which is under control of CLR (Common Language Runtime) is called managed code.The code which takes Operating System help while execution is called unmanaged code. ...
Latest Answer: Webcontrol is the base class that define methods, properties, events for all the controls in System.Web.UI.Webcontrols namespace. ...
Latest Answer: Application Object and Cached Object both falls under Server side State Management.Application object resides in InProc i.e. on the same server where we hosted our application.Cache Object resides on server side/ DownStream/Client Side.Application Object ...
Latest Answer: Boxing: Converting Value Type into Reference TypeExample: int i = 10; string str = Convert.ToString(i);Unboxing: Converting Reference Type into Value TypeExample:string str = "10"; int i = Convert.ToInt16(str) ; ...
1. Viewing Metadata.2.Performing type discovery.3.Late binding to methods and properties (dynamic invocation)4.Creating new types at runtime(Reflection EMIT)
Latest Answer: Reflection is a concept using which we can 1) Load assemblies dynamically2) Invoke methods at runtime3) Retriving type information at runtime.We are using reflection in Unit Testing for testing Private methods.Infact our friend Mr. Intellisence of MS.NET, ...
In which circumstances we have to use this?
Latest Answer: The AutoWireup attribute is either set as True or False. The attribute allows you to fire the events written in code behind file. If this page level attribute is set to False then the code behid Events will not fire automatically. For E.g if there is ...
Latest Answer: Debug and Trace both are used to display messages. However Debug won't work in Release mode.Debug information stores in .pdb file.PDB stands for Project DataBase. ...
Latest Answer: We are having 11 Page life cycle events.Below are the events occures during page load.1) Page_PreInit2) Page_Init3) Page_InitComplete4) Page_PreLoad5) Page_Load6) Page_LoadComplete7) Page_PreRender8)RenderRest won't occure during pageload. Other events ...
Build a proxy library by using the wsdl.exe utility
Latest Answer: There are 2 ways one can consume a webservice.
1) By creating a proxy manually
2) By adding web reference
Creating Proxy manually:
1) Browse the webservice
2) Add ?wsdl at the end of the URL
3) Save the wsdl file in local system
4) Use visual ...
HasErrorConflict
Latest Answer: HasConflict Mathod is used on the DataTable to indicate conflicts after update method is called? ...
View page << Previous 1 2 [3] 4 5 6 7 8 9 10 Next >>

Go Top