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

What are channels in .NET Remoting?
What are channels in .NET Remoting? Channels represent the objects that transfer the other serialized objects from one application domain to another and from one computer to another, as well as one process to another on the same box. A channel must exist before an object can be transferred.
2013-11-12, 1622👍, 0💬

Tell few steps for optimizing (for speed and resource) ASP page/application.
Tell few steps for optimizing (for speed and resource) ASP page/application. Avoid mixing html code with asp code
2014-10-06, 1621👍, 0💬

Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.
Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process. inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension),the ISAPI filter aspnet_isapi.dll ...
2014-03-03, 1621👍, 0💬

The event handlers that can be included in the Global.asax file are ...
The event handlers that can be included in the Global.asax file are ... The event handlers that can be included in the Global.asax file are * Application Start and Session Start event handlers only * Application End and Session End event handlers only * Per-request and Non-deterministic event handle...
2014-08-20, 1619👍, 0💬

What is the exception that is thrown when there is an attempt to dynamically access a method that does not exist?
What is the exception that is thrown when there is an attempt to dynamically access a method that does not exist? What is the exception that is thrown when there is an attempt to dynamically access a method that does not exist? * MissingMethodException * TypeLoadException * MethodLoadException * Met...
2014-08-06, 1619👍, 0💬

What is serialization, how it works in .NET?
What is serialization, how it works in .NET? Serialization is when you persist the state of an object to a storage medium so an exact copy can be re-created at a later stage. Serialization is used to save session state in ASP.NET. Serialization is to copy objects to the Clipboard in Windows Forms Se...
2013-12-25, 1619👍, 0💬

How do you define the lease of the object?
How do you define the lease of the object? By implementing ILease interface when writing the class code.
2013-11-15, 1619👍, 0💬

What is a Web Service?
What is a Web Service? A web service is a software component that exposes itself through the open communication channels of the Internet. Applications running on remote machines, on potentially different platforms, can access these components in a language and platform-independent manner. A Web Serv...
2013-11-05, 1619👍, 0💬

I am constantly writing the drawing procedures with System.Drawing.Graphics, but having to use the try and dispose blocks is to
I am constantly writing the drawing procedures with System.Drawing.Graphics, but having to use the try and dispose blocks is too time-consuming with Graphics objects. Can I automate this? Yes, the code System.Drawing.Graphics canvas = new System.Drawing.Graphics(); try { //some code } finally canvas...
2013-11-20, 1617👍, 0💬

If you set AutoGenerateColumns=True and still provide custom column definitions ...
If you set AutoGenerateColumns=True and still provide custom column definitions ... State True or False: If you set AutoGenerateColumns=True and still provide custom column definitions, the DataGrid will render both * True * False False.
2014-07-30, 1616👍, 0💬

What is boxing?
What is boxing? Boxing is an implicit conversion of a value type to the type object int i = 123; // A value type Object box = i // Boxing Unboxing is an explicit conversion from the type object to a value type int i = 123; // A value type object box = i; // Boxing int j = (int)box; // Unboxing
2014-02-27, 1616👍, 0💬

How is a property designated as read-only?
How is a property designated as read-only? In VB.NET: Public ReadOnly Property PropertyName As ReturnType Get ‘Your Property Implementation goes in here End Get End Property in C# public returntype PropertyName { get{ //property implementation goes here } // Do not write the set implementation }
2014-02-07, 1616👍, 0💬

Which method do you use to redirect the user to another page without performing a round trip to the client?
Which method do you use to redirect the user to another page without performing a round trip to the client? Server.transfer()
2014-02-04, 1616👍, 0💬

ASP.NET interview questions only (3)
ASP.NET interview questions only (3) 1. How does ASP page work? 2. How ASP.NET page works? 3. What are the contents of cookie? 4. How do you create a permanent cookie? 5. What is ViewState? What does the “EnableViewState” property do? Whay would I want it on or off? 6. Give an example of what ...
2014-01-08, 1615👍, 0💬

.NET framework overview
.NET framework overview 1. Has own class libraries. System is the main namespace and all other namespaces are subsets of this. 2. It has CLR(Common language runtime, Common type system, common language specification) 3. All the types are part of CTS and Object is the base class for all the types. 4....
2013-12-06, 1615👍, 0💬

If I have more than one version of one assemblies, then how will I use old version in my application? Give an example.
If I have more than one version of one assemblies, then how will I use old version in my application? Give an example. Change the assembly version number in the AssemblyInfo.vb file
2014-11-12, 1613👍, 0💬

How can you assign an RGB color to a System.Drawing.Color object?
How can you assign an RGB color to a System.Drawing.Color object? Call the static method FromArgb of this class and pass it the RGB values.
2013-11-22, 1612👍, 0💬

What is a formatter?
What is a formatter? A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other end.
2013-11-13, 1611👍, 0💬

What are the Types of Assemblies?
What are the Types of Assemblies? Assemblies are of two types: 1. Private Assemblies 2. Shared Assemblies Private Assemblies: The assembly is intended only for one application. The files of that assembly must be placed in the same folder as the application or in a sub folder. No other application wi...
2013-10-31, 1609👍, 0💬

How is .NET able to support multiple languages?
How is .NET able to support multiple languages? A language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL for short). This is called as Managed Code. This Managed code is run in .NET environment. S...
2014-01-09, 1608👍, 0💬

The Equivalent Html Control for the &lt;select> tag is ...
The Equivalent Html Control for the &lt;select> tag is ... The Equivalent Html Control for the &lt;select> tag is * &lt;HtmlSelectInput> * &lt;HtmlSelect> * &lt;HtmlInputSelect> * &lt;HtmlSelectControl> &lt;HtmlSelect>
2014-06-25, 1607👍, 0💬

What are the different types of serialization supported in .NET Framework...
What are the different types of serialization supported in .NET Framework... What are the different types of serialization supported in .NET Framework * XmlSerializer * SoapFormatter * XPathNavigator * HttpFormatter xmlserializer
2014-03-10, 1606👍, 0💬

Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? Binary over TCP is the most effiecient, SOAP over HTTP is the most interoperable.
2013-11-14, 1606👍, 0💬

What is IIS? Have you used it?
What is IIS? Have you used it? IIS - Internet Information Server IIS is used to access the ASP.Net web applications Yes, I used in ASP.NET web applications.
2013-12-12, 1603👍, 0💬

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