<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Rank

One of the possible way of writing an ASP.NET handler that works like an ISAPI filter- that is ...
One of the possible way of writing an ASP.NET handler that works like an ISAPI filter- that is ... One of the possible way of writing an ASP.NET handler that works like an ISAPI filter- that is, that sees requests and responses and modifies them also, is by, * writing a module that extends FormsAuth...
2014-08-25, 1684👍, 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, 1545👍, 0💬

An .ASHX file contains the following ...
An .ASHX file contains the following ... An .ASHX file contains the following * Code-behind that are used in the code * Server Controls that can be called from a code-behind file * HTTP handlers-software modules that handle raw HTTP requests received by ASP.NET * Contains normal ASP.NET code and can...
2014-08-22, 1666👍, 0💬

The Assemblies that can be referenced in an ASPX file without using @Assembly Directive is ...
The Assemblies that can be referenced in an ASPX file without using @Assembly Directive is ... The Assemblies that can be referenced in an ASPX file without using @Assembly Directive is * System.dll, System.Data.dll, System.Web.dll, System.Xml.dll, * System.dll, System.Collections.dll, System.IO.dll...
2014-08-22, 1624👍, 0💬

A Few of the Namespaces that get imported by default in an ASPX file are ...
A Few of the Namespaces that get imported by default in an ASPX file are ... A Few of the Namespaces that get imported by default in an ASPX file are * System, System.Data, System.Drawing, System.Globalization * System, System.IO, System.Management, System.Globalization * System, System.Collections,...
2014-08-20, 1474👍, 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, 1615👍, 0💬

A valid comment block in ASP.NET is ...
A valid comment block in ASP.NET is ... A valid comment block in ASP.NET is * &lt;!- - - Comment - - - > * &lt;!- - Comment - - > * &lt;% - - Comment - - %> * &lt;% ! - - Comment - - > &lt;% - - Comment - - %>
2014-08-18, 1725👍, 0💬

The following is a valid statement in ASP.NET&lt;%@ Page Language="C" %&gt;: * True or * False
The following is a valid statement in ASP.NET&lt;%@ Page Language="C" %&gt;: * True or * False False
2014-08-18, 1771👍, 0💬

What is used to validate complex string patterns like an e-mail address?
What is used to validate complex string patterns like an e-mail address? What is used to validate complex string patterns like an e-mail address? * Extended expressions * Regular expressions * Irregular expressions * Basic expressions Regular Expression.
2014-08-14, 2680👍, 0💬

What method must be overridden in a custom control?
What method must be overridden in a custom control? What method must be overridden in a custom control? * The Paint() method * The Control_Build() method * The Render() method * The default constructor The Render() method
2014-08-14, 2054👍, 0💬

After capturing the SelectedIndexChanged event for a ListBox control, you find that the event handler doesn’t execute. What co
After capturing the SelectedIndexChanged event for a ListBox control, you find that the event handler doesn’t execute. What could the problem be? After capturing the SelectedIndexChanged event for a ListBox control, you find that the event handler doesn’t execute. What could the problem be? * ...
2014-08-11, 2945👍, 0💬

What method(s) must be used with the Application object to ensure that only one process accesses a variable at a time?
What method(s) must be used with the Application object to ensure that only one process accesses a variable at a time? What method(s) must be used with the Application object to ensure that only one process accesses a variable at a time? * Synchronize() * Lock() and UnLock() * Lock() * Asynchroize()...
2014-08-11, 1547👍, 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, 1616👍, 0💬

Which of the following is the C# escape character for Null?
Which of the following is the C# escape character for Null? Which of the following is the C# escape character for Null? * \n * \0 * \f * \v \0
2014-08-06, 1382👍, 0💬

When creating a C# Class Library project, what is the name of the supplementary file ...
When creating a C# Class Library project, what is the name of the supplementary file ... When creating a C# Class Library project, what is the name of the supplementary file that Visual Studio.NET creates that contains General Information about the assembly? * AssemblyInfo.xml * AssemblyInfo.cs * As...
2014-08-04, 2596👍, 0💬

What is the comment syntax for C#’s XML-based documentation?
What is the comment syntax for C#’s XML-based documentation? What is the comment syntax for C#’s XML-based documentation? * /** and **/ * //# * /// * //* ///
2014-08-04, 1580👍, 0💬

Pick the command line that would result in the C# compiler generating an XML documentation file ...
Pick the command line that would result in the C# compiler generating an XML documentation file ... Pick the command line that would result in the C# compiler generating an XML documentation file * csc /doc:NewHome.xml NewHome.cs * c /doc /docfile: NewHome.xml NewHome.cs * csc /doc /out: NewHome.xml...
2014-08-01, 1640👍, 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, 1558👍, 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, 1615👍, 0💬

The property that indicates whether existing database constraints should be observed when performing updates
The property that indicates whether existing database constraints should be observed when performing updates The property that indicates whether existing database constraints should be observed when performing updates * EnforceConstraints * Constraints * GetConstraints * ConstraintsEnforce EnforceCo...
2014-07-30, 2018👍, 0💬

Which is the correct statement to set the alias name for namespace in C#?
Which is the correct statement to set the alias name for namespace in C#? Which is the correct statement to set the alias name for namespace in C#? * using System Data.OracleClient = aliasName; * using aliasName = System.Data.OracleClient; * string aliasName = using.System.Data.OracleClient ;* Both ...
2014-07-28, 1493👍, 0💬

Which of the following operations can you NOT perform on an ADO.NET DataSet?
Which of the following operations can you NOT perform on an ADO.NET DataSet? Which of the following operations can you NOT perform on an ADO.NET DataSet? * A DataSet can be synchronised with the database. * A DataSet can be synchronised with a RecordSet. * A DataSet can be converted to XML. * You ca...
2014-07-28, 2913👍, 0💬

The method that need to be invoked on the DataAdapter control to load the generated dataset with data is
The method that need to be invoked on the DataAdapter control to load the generated dataset with data is The method that need to be invoked on the DataAdapter control to load the generated dataset with data is * Bind() * Fill() * FillData() * SetData() Fill()
2014-07-24, 1534👍, 0💬

The Syntax for data-binding expressions is ...
The Syntax for data-binding expressions is ... The Syntax for data-binding expressions is * &lt;%# property or collection %> * &lt;%# property or collection #%> * &lt;%$ property or collection %> * &lt;%@ property or collection %> &lt;%# property or collection #%>
2014-07-24, 1508👍, 0💬

<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Rank