<< < 151 152 153 154 155 156 157 158 159 160 161 > >>   Sort: Date

On order to get assembly info which namespace we should import?
On order to get assembly info which namespace we should import? System.Reflection Namespace
2014-09-08, 1742👍, 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, 1742👍, 0💬

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

Explain similarities and differences between Java and.NET?
Explain similarities and differences between Java and.NET? Comparing Java and .NET is comparing apples and oranges. Either the question needs to be to compare Java and C# or J2EE and .NET.
2014-09-22, 1741👍, 0💬

What are the disadvantages of viewstate/what are the benefits?
What are the disadvantages of viewstate/what are the benefits? Answer1: Disadvantage of viewstate is that additional data is sent to the browser. The benefits are that you do not have to manually manage refreshing the page fields after a submit, (when re-displaying the same page). Answer2: Automatic...
2014-02-11, 1741👍, 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, 1740👍, 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, 1738👍, 0💬

What is the output for the following code snippet:..
What is the output for the following code snippet:.. What is the output for the following code snippet: public class testClass { public static void Main(string[] args) { System.Console.WriteLine(args[ 1]);}//end Main }//end class testClass * Compiler Error * Runtime Error * Hello C# world * None of ...
2014-08-25, 1737👍, 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, 1737👍, 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, 1736👍, 0💬

What are the different types of replication? How are they used?
What are the different types of replication? How are they used? Replication is used for distributing data and the execution of stored procedures across an enterprise. The replication technology allows you to make duplicate copies of your data, move those copies to different locations, and synchroniz...
2014-11-17, 1735👍, 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, 1735👍, 0💬

The RangeValidator control supports the following datatype ...
The RangeValidator control supports the following datatype ... The RangeValidator control supports the following datatype * Integer and String * Integer, Float, String, XMLDatatypes * Integer, String and Date * Integer, Boolean, Short, String and Date Integer, String and Date
2014-07-09, 1734👍, 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, 1734👍, 0💬

Does anyone have a tool for converting old-style C programs to ANSI C?
Does anyone have a tool for converting old-style C programs to ANSI C, or vice versa, or for automatically generating prototypes? Two programs, protoize and unprotoize, convert back and forth between prototyped and ``old style'' function definitions and declarations. (These programs do not handle fu...
2015-11-25, 1733👍, 0💬

Describe session handling in webform. How does it work and what are the limits?
Describe session handling in webform. How does it work and what are the limits? Session management in ASP.NET can be done in two ways: Using Cookies Encoding of URLs with Session ID
2014-11-05, 1733👍, 0💬

Which command using Query Analyzer will give you the version of SQL Server and Operating System?
Which command using Query Analyzer will give you the version of SQL Server and Operating System? @@VERSION Returns version, processor architecture, build date, and operating system for the current installation of SQL Server.
2014-10-06, 1733👍, 0💬

The methods in C# can be overloaded in which of the following ways
The methods in C# can be overloaded in which of the following ways The methods in C# can be overloaded in which of the following ways * By having the same method name and specifying different number of parameters * By giving different method names and same number of parameters * By having the same m...
2014-07-07, 1733👍, 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, 1733👍, 0💬

The data from an XSL Transform with XmlReader can be returned in one of the following ways
The data from an XSL Transform with XmlReader can be returned in one of the following ways The data from an XSL Transform with XmlReader can be returned in one of the following ways * objReader = objXslT.Transform(objNav, nothing) * objXslT.Transform(objNav, nothing) * objReader = objXslT.Transform(...
2014-08-01, 1732👍, 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, 1732👍, 0💬

How do you get records number from 5 to 15 in a dataset of 100 records? Write code.
How do you get records number from 5 to 15 in a dataset of 100 records? Write code. Answer1 DataSet ds1=new DataSet(); String strCon=”data source=IBM-6BC8A0DACEF;initial catalog=pubs;integrated security=SSPI;persist” +” security info=False;user id=sa;workstation id=IBM-6BC8A0DACEF;packet s...
2014-09-11, 1731👍, 0💬

Which method do you invoke on the DataAdapter control to load your generated dataset with data?
Which method do you invoke on the DataAdapter control to load your generated dataset with data? System.Data.Common.DataAdapter .Fill(System.Data.DataSet);If my DataAdapter is sqlDataAdapter and my DataSet is dsUsers then it is called this way: sqlDataAdapter.Fill(dsUsers);
2014-01-28, 1731👍, 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, 1731👍, 0💬

<< < 151 152 153 154 155 156 157 158 159 160 161 > >>   Sort: Date