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

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

What tag do you use to add a hyperlink column to the DataGrid?
What tag do you use to add a hyperlink column to the DataGrid? Depends on who’s definition of hyperlink your using. Manually a std html anchor tag (a) will work or you can use the micro-magical tag
2014-02-12, 1642👍, 0💬

What is the difference between VB 6 and VB.NET?
What is the difference between VB 6 and VB.NET? Answer1 VB 1,Object-based Language 2,Doesnot support Threading 3,Not powerful Exception handling mechanism 4,Doesnot having support for the console based applications 5,Cannot use more than one version of com objects in vb application called DLL error ...
2013-11-26, 1642👍, 0💬

What is one of the first things you would do to increase performance of a query? For example, a boss tells you that “a query t
What is one of the first things you would do to increase performance of a query? For example, a boss tells you that “a query that ran yesterday took 30 seconds, but today it takes 6 minutes”? Answer1. Use Storedprocedure for any optimized result, because it is an compiled code. Answer2. One of...
2014-10-10, 1640👍, 0💬

The ASP.NET directive that lets you cache different versions of a page based on varying input parameters ...
The ASP.NET directive that lets you cache different versions of a page based on varying input parameters ... The ASP.NET directive that lets you cache different versions of a page based on varying input parameters, HTTP headers and browser type is * @OutputCache * @CacheOutput * @PageCache * @CacheA...
2014-08-27, 1639👍, 0💬

What does the "EnableViewState" property do? Why would I want it on or off?
What does the "EnableViewState" property do? Why would I want it on or off? Enable ViewState turns on the automatic state management feature that enables server controls to re-populate their values on a round trip without requiring you to write any code. This feature is not free however, since the s...
2014-01-17, 1639👍, 0💬

With these events, why wouldn’t Microsoft combine Invalidate and Paint, so that you wouldn’t have to tell it to repaint, and
With these events, why wouldn’t Microsoft combine Invalidate and Paint, so that you wouldn’t have to tell it to repaint, and then to force it to repaint? Painting is the slowest thing the OS does, so usually telling it to repaint, but not forcing it allows for the process to take place in the ...
2013-11-21, 1639👍, 0💬

What is managed code and managed data?
What is managed code and managed data? Managed code is code that is written to target the services of the Common Language Runtime. In order to target these services, the code must provide a minimum level of information (metadata) to the runtime. All C#, Visual Basic .NET, and JScript .NET code is ma...
2013-10-28, 1639👍, 0💬

Which control would you use if you needed to make sure the values in two different controls matched?
Which control would you use if you needed to make sure the values in two different controls matched? Use the CompareValidator control to compare the values of 2 different controls.
2014-02-10, 1638👍, 0💬

Which DLL file is needed to be registered for ASP?
Which DLL file is needed to be registered for ASP? The dll needed for the ASP.net is SYSTEM.WEB.dll
2014-09-26, 1637👍, 0💬

How can you deploy an asp.net application ?
How can you deploy an asp.net application ? You can deploy an ASP.NET Web application using any one of the following three deployment options. a) Deployment using VS.NET installer b) Using the Copy Project option in VS .NET c) XCOPY Deployment
2014-09-19, 1634👍, 0💬

Where does the Web page belong in the .NET Framework class hierarchy?
Where does the Web page belong in the .NET Framework class hierarchy? System.Web.UI.Page
2014-03-05, 1633👍, 0💬

What base class do all Web Forms inherit from?
What base class do all Web Forms inherit from? System.Web.UI.Page
2014-01-30, 1633👍, 0💬

How many languages .NET is supporting now?
How many languages .NET is supporting now? When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. 44 languages are supported.
2014-01-09, 1633👍, 0💬

How do you separate business logic while creating an ASP.NET application?
How do you separate business logic while creating an ASP.NET application? There are two level of asp.net debugging 1. Page level debugging For this we have to edit the page level debugging enable the trace to true in the line in the html format of the page. %@ Page Language=”vb” trace=”tr...
2014-09-17, 1632👍, 0💬

Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?
Can you explain the difference between an ADO.NET Dataset and an ADO Recordset? In ADO, the in-memory representation of data is the recordset. In ADO.NET, it is the dataset. There are important differences between them. * A recordset looks like a single table. If a recordset is to contain data from ...
2014-01-20, 1632👍, 0💬

What’s a Windows process?
What’s a Windows process? It’s an application that’s running and had been allocated memory.
2013-11-07, 1631👍, 0💬

What method do you use to explicitly kill a user’s session?
What method do you use to explicitly kill a user’s session? The Abandon method destroys all the objects stored in a Session object and releases their resources. If you do not call the Abandon method explicitly, the server destroys these objects when the session times out. Syntax: Session.Abandon
2014-01-30, 1630👍, 0💬

What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services?
What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services? Remoting is a more efficient communication exchange when you can control both ends of the application involved in the communication process. Web Services provide an open-protocol-based exchange of informaion. Web Se...
2013-11-11, 1630👍, 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, 1628👍, 0💬

How many objects are there in ASP?
How many objects are there in ASP? Answer1 8 objects, they are request,response, server,application,session,fil e,dictionary, textstream. Answer2 There are 6 objects in ASP.net a) Server b) Session c) Application d) ObjectContext e) Response f) Request
2014-09-24, 1626👍, 0💬

The number of objects in ASP.NET is ...
The number of objects in ASP.NET is ... The number of objects in ASP.NET is * 6 * 7 * 9 * 10 Answer1: 7 Answer2: 10
2014-03-13, 1626👍, 0💬

How can be the web application get configured with the following authorization rules ...
How can be the web application get configured with the following authorization rules ... How can be the web application get configured with the following authorization rules * Anonymous users must not be allowed to access the application. * All persons except David and John must be allowed to access...
2014-08-29, 1625👍, 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, 1625👍, 0💬

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