<< < 22 23 24 25 26 27 28 29 30 31 32 > >>   Sort: Rank

Which dll is required to translate XML to SQL in IIS ?
Which dll is required to translate XML to SQL in IIS ? Microsoft.data.sqlxml.dll
2013-12-24, 1874👍, 0💬

What is the Differnce Between Response.write & response.output.Write
What is the Differnce Between Response.write & response.output.Write In ASP.NET the Response object is of type HttpResponse and when you say Response.Write you’re really saying (basically) HttpContext.Current.Response.W riteand calling one of the many overloaded Write methods of HttpResponse....
2013-12-24, 1645👍, 0💬

Can anyone tell me about Secure Socket Layer? How to make use of the technology?
Can anyone tell me about Secure Socket Layer? How to make use of the technology? Secure Sockets Layer (SSL) and Transport Layer Security (TLS), its successor, are cryptographic protocols which provide secure communications on the Internet. There are slight differences between SSL 3.0 and TLS 1.0, bu...
2013-12-23, 1678👍, 0💬

Which DLL translate XML to SQL in IIS?
Which DLL translate XML to SQL in IIS? Sqlisapi.dll
2013-12-23, 1928👍, 0💬

How is meant by DLL ?
How is meant by DLL ? A DLL (Dynamic Link Library) is a file that can be loaded and executed by programs dynamically. Basically it’s an external code repository for programs. Since usually several different programs reuse the same DLL instead of having that code in their own file, this dramatical...
2013-12-20, 1675👍, 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, 1772👍, 0💬

Calculating Most Frequent Number
Can you write a computer code for the following problem: Given an online stream of infinite numbers, print out the most frequent number. Here is a solution in Java: import java.io.*; import java.util.*; public class MostFrequent { public static void main(String[] a) { int mapMax = 99; // Most freque...
2013-12-19, 2280👍, 0💬

Array creation
How to create array in javascript
2013-12-19, 2370👍, 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, 1734👍, 0💬

What is the use of ErrorProvider Control?
What is the use of ErrorProvider Control? The ErrorProvider control is used to indicate invalid data on a data entry form. Using this control, you can attach error messages that display next to the control when the data is invalid, as seen in the following image. A red circle with an exclamation poi...
2013-12-18, 1715👍, 0💬

What’s the difference between Response.Write() andResponse.Output.Write()?
What’s the difference between Response.Write() andResponse.Output.Write()? Response.Output.Write() allows you to write formatted output
2013-12-17, 1648👍, 0💬

what is the difference between user control an custom control? advantages/disadvantages?
what is the difference between user control an custom control? advantages/disadvantages? Web user controls Vs Web custom controls Easier to create Vs Harder to create Limited support for consumers who use a visual design tool Vs Full visual design tool support for consumers A separate copy of the co...
2013-12-17, 1649👍, 0💬

Why The JavaScript Validation Not Run on the Asp.Net Button But Run SuccessFully On The HTML Button
Why The JavaScript Validation Not Run on the Asp.Net Button But Run SuccessFully On The HTML Button The Asp.Net Button Is post backed on the server & not yet Submit & when It goes to the server its states is lost So if we r using javascript in our application so we always use the Input Butto...
2013-12-16, 1564👍, 0💬

How many types of exception handlers are there in .NET?
How many types of exception handlers are there in .NET? Answer 1: From MSDN&gt;gt; “How the Runtime Manages Exceptions” http://msdn.microsoft.com/libr ary/default.asp?url=/library/en-us/cpguide/htm l/cpconexceptionsoverview.aspThe exception information table represents four types of except...
2013-12-16, 1587👍, 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, 1749👍, 0💬

Main differences between ASP and ASP.NET.
Main differences between ASP and ASP.NET. Answer 1: 1. ASP: Code is Interpreted ASP.NET: Code is Compiled 2. ASP: Business Logic and Presentation Logic are in a single file ASP.NET: Business Logic and Presentation Logic are in separate files (.cs or .vb) and (.aspx) respectively. 3. ASP: No Web Serv...
2013-12-13, 1586👍, 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, 1601👍, 0💬

What is Response object? How is it related to ASP’s Response object?
What is Response object? How is it related to ASP’s Response object? Response object allows the server to communicate with the client(browser). It is useful for displaying information to the user (or) redirecting the client. Eg: Response.Write(”Hello World”)
2013-12-12, 1590👍, 0💬

What is the base class of Button control?
What is the base class of Button control? Listing from visual studio .net &gt; Button Class System.Object System.MarshalByRefObject System.ComponentModel.Componen tSystem.Windows.Forms.Control System.Windows.Forms.ButtonBas eSystem.Windows.Forms.Button
2013-12-11, 1671👍, 0💬

Difference between Panel and GroupBox classes?
Difference between Panel and GroupBox classes? Answer 1: Panel and Group box both can used as container for other controls like radio buttons and check box. the difference in panel and group box are Panel 1) In case of panel captions cannot be displayed 2) Can have scroll bars. Group box 1) Captions...
2013-12-11, 1531👍, 0💬

ADO.NET features? Benefits? Drawbacks?
ADO.NET features? Benefits? Drawbacks? Answer 1: 1. Data will be retrieved through Datasets 2. Scalability Answer 2: 1. Disconnected Data Architecture 2. Data cached in Datasets 3. Data transfer in XML format 4. Interaction with the database is done through data commands
2013-12-10, 1483👍, 0💬

Name some of the languages .NET support?
Name some of the languages .NET support? Some of the languages that are supported by .NET 1. Visual Basic.NET 2. Visual C# 3. Visual C++
2013-12-10, 1539👍, 0💬

Explain assemblies.
Explain assemblies. Answer 1: Assemblies are similar to dll files. Both has the reusable pieces of code in the form of classes/ functions. Dll needs to be registered but assemblies have its own metadata. Answer 2: Assembly is a single deployable unit that contains information about the implementatio...
2013-12-09, 1576👍, 0💬

What is the base class of .NET?
What is the base class of .NET? Base class provides a base set of methods that all derived classes can use
2013-12-09, 1596👍, 0💬

<< < 22 23 24 25 26 27 28 29 30 31 32 > >>   Sort: Rank