<< < 145 146 147 148 149 150 151 152 153 154 155 > >>   Sort: Date

Bitwise AND operator in C# is ...
Bitwise AND operator in C# is ... Bitwise AND operator in C# is * &amp; * &amp;&amp; * AND * XAND Answer1: &amp;&amp; Answer2: &amp;
2014-03-21, 1839👍, 0💬

What is Viewstate?
What is Viewstate? A server control’s view state is the accumulation of all its property values. In order to preserve these values across HTTP requests, ASP.NET server controls use this property, which is an instance of the StateBag class, to store the property values.
2014-01-01, 1836👍, 0💬

What is "Common Type System" (CTS)?
What is "Common Type System" (CTS)? CTS defines all of the basic types that can be used in the .NET Framework and the operations performed on those type. All this time we have been talking about language interoperability, and .NET Class Framework. None of this is possible without all the language sh...
2013-10-29, 1835👍, 0💬

What is Delegate and what is it used for ?
What is Delegate and what is it used for ? Delegate is kinda like a pointer to a function in C++ or like an event handler in Java You can use it to “multicast” which means running multiple functions in different instances of object already created. This is useful when you want your objects to...
2013-12-20, 1834👍, 0💬

How ASP .NET different from ASP?
How ASP .NET different from ASP? Scripting is separated from the HTML, Code is compiled as a DLL, these DLLs can be executed on the server.
2013-09-27, 1834👍, 0💬

Creating a Key Pair?
Creating a Key Pair? You can create a key pair using the Strong Name tool (Sn.exe). Key pair files usually have an .snk extension. To create a key pair At the command prompt, type the following command: sn k In this command, file name is the name of the output file containing the key pair. The follo...
2013-10-24, 1832👍, 0💬

Return a null pointer or a pointer to 0 bytes? .....
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes? The ANSI/ISO Standard says that it may do either; the behavior is implementation-defined ortable code must either take care not to call malloc(0), or be prepared for the possibility of a null return.
2016-04-21, 1824👍, 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, 1823👍, 0💬

Bitwise OR operator in C# is ...
Bitwise OR operator in C# is ... Bitwise OR operator in C# is * OR * || * | * XOR Answer1: || Answer2: |
2014-03-24, 1823👍, 0💬

How do SQL Server 2000 and XML linked? What is SQL Server agent?
How do SQL Server 2000 and XML linked? What is SQL Server agent? Every Request or the Response to or from SQL Server is converted into XML format. Its purpose is to ease the implementation of tasks for the DBA, with its full-function scheduling engine, which allows you to schedule your own jobs and ...
2014-11-17, 1822👍, 0💬

Explain how Viewstate is being formed and how it’s stored on client.
Explain how Viewstate is being formed and how it’s stored on client. The type of ViewState is System.Web.UI.StateBag, which is a dictionary that stores name/value pairs. ViewState is persisted to a string variable by the ASP.NET page framework and sent to the client and back as a hidden variable....
2014-01-03, 1821👍, 0💬

What are the advantages and drawbacks of using ADO.NET?
What are the advantages and drawbacks of using ADO.NET? Pros ==== ADO.NET is rich with plenty of features that are bound to impress even the most skeptical of programmers. If this weren’t the case, Microsoft wouldn’t even be able to get anyone to use the Beta. What we’ve done here is come ...
2013-12-13, 1819👍, 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.
2013-09-30, 1814👍, 0💬

How would you implement inheritance using VB.NET/C#?
How would you implement inheritance using VB.NET/C#? When we set out to implement a class using inheritance, we must first start with an existing class from which we will derive our new subclass. This existing class, or base class, may be part of the .NET system class library framework, it may be pa...
2014-01-23, 1812👍, 0💬

What is Web.config?
What is Web.config? In classic ASP all Web site related information was stored in the metadata of IIS. This had the disadvantage that remote Web developers couldn't easily make Web-site configuration changes. For example, if you want to add a custom 404 error page, a setting needs to be made through...
2013-10-06, 1809👍, 0💬

What is the difference between ADO and ADO.NET?
What is the difference between ADO and ADO.NET? ADO uses Recordsets and cursors to access and modify data. Because of its inherent design, Recordset can impact performance on the server side by tying up valuable resources. In addition, COM marshalling - an expensive data conversion process - is need...
2013-10-07, 1808👍, 0💬

What is the difference between an EXE and a DLL?
What is the difference between an EXE and a DLL? An EXE can run independently, whereas DLL will run within an EXE. DLL is an in-process file and EXE is an out-process file
2014-02-17, 1806👍, 0💬

Why is it hard to call this function: sub y { "because" }
Why is it hard to call this function: sub y { "because" } Because y is a kind of quoting operator. The y/// operator is the sed-savvy synonym for tr///. That means y(3) would be like tr(), which would be looking for a second string, as in tr/a-z/A-Z/, tr(a-z)(A-Z), or tr[a-z][A-Z].
2013-09-05, 1805👍, 0💬

What is CLR?
What is CLR? Answer 1: CLR(Common Language Runtime) is the main resource of .Net Framework. it is collection of services like garbage collector, exception handler, jit compilers etc. with the CLR cross language integration is possible. Answer 2: The .NET Framework provides a runtime environment whic...
2013-12-18, 1804👍, 0💬

What is the output for the below mentioned compilation command>csc /addmodule:A.Exe B.Cs
What is the output for the below mentioned compilation command>csc /addmodule:A.Exe B.Cs What is the output for the below mentioned compilation command>csc /addmodule:A.Exe B.Cs * A.exe * B.exe * A.dll * B.dll B.exe
2014-08-29, 1802👍, 0💬

What is Delegation?
What is Delegation? A delegate acts like a strongly type function pointer. Delegates can invoke the methods that they reference without making explicit calls to those methods. Delegate is an entity that is entrusted with the task of representation, assign or passing on information. In code sense, it...
2013-11-19, 1802👍, 0💬

Suppose you want a certain ASP.NET function executed on MouseOver overa certain button. Where do you add an event handler?
Suppose you want a certain ASP.NET function executed on MouseOver overa certain button. Where do you add an event handler? It’s the Attributesproperty, the Add function inside that property. So btnSubmit.Attributes.Add("onMo useOver","someClientCode();")A simple”Javascript:ClientCode ();”i...
2014-03-07, 1795👍, 0💬

Observations between VB.NET and VC#.NET?
Observations between VB.NET and VC#.NET? Choosing a programming language depends on your language experience and the scope of the application you are building. While small applications are often created using only one language, it is not uncommon to develop large applications using multiple language...
2013-10-03, 1794👍, 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, 1792👍, 0💬

<< < 145 146 147 148 149 150 151 152 153 154 155 > >>   Sort: Date