<< < 148 149 150 151 152 153 154 155 156 157 158 > >>   Sort: Date

What should you do to store an object in a Viewstate?
What should you do to store an object in a Viewstate? Do serialization of convert the object to string
2014-01-03, 1902👍, 0💬

What is "Common Language Runtime" (CLR)?
What is "Common Language Runtime" (CLR)? CLR is .NET equivalent of Java Virtual Machine (JVM). It is the runtime that converts a MSIL code into the host machine language code, which is then executed appropriately. The CLR is the execution engine for .NET Framework applications. It provides a number ...
2013-10-30, 1900👍, 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, 1899👍, 0💬

What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not?
What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not? Debug build contain debug symbols and can be debugged while release build doesn’t contain debug symbols, doesn’t have [Contional(”DEBUG”)] methods calls compiled, can’t...
2014-02-25, 1899👍, 0💬

Is string a value type or a reference type?
Is string a value type or a reference type? Answer1: String is Reference Type. Value type - bool, byte, chat, decimal, double, enum , float, int, long, sbyte, short,strut, uint, ulong, ushort Value types are stored in the Stack Reference type - class, delegate, interface, object, string Reference ty...
2014-02-27, 1897👍, 0💬

Where would you use an iHTTPModule, and what are the limitations of anyapproach you might take in implementing one?
Where would you use an iHTTPModule, and what are the limitations of anyapproach you might take in implementing one? One of ASP.NET’s most useful features is the extensibility of the HTTP pipeline, the path that data takes between client and server. You can use them to extend your ASP.NET applicat...
2014-01-27, 1896👍, 0💬

How do u call and execute a stored procedure in .NET?
How do u call and execute a stored procedure in .NET? system.Data; system.Data.SqlClient; SqlConnection sqCon = new SqlConnection(”connection string”); SqlCommand sqCmd = new SqCmd(); sqCmd.Connection = sqCon; sqCmd.CommandText = procedure_name; sqCmd.CommandType = CommandType.StoredProcedure;.. .
2014-11-14, 1895👍, 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, 1894👍, 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, 1893👍, 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, 1891👍, 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, 1890👍, 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, 1890👍, 0💬

How do you trigger the Paint event in System.Drawing?
How do you trigger the Paint event in System.Drawing? Invalidate the current form, the OS will take care of repainting. The Update method forces the repaint.
2013-11-21, 1889👍, 0💬

Explain DataSet.AcceptChanges and DataAdapter.Update methods.
Explain DataSet.AcceptChanges and DataAdapter.Update methods. DataAdapter.Update method Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the DataSet. DataSet.AcceptChanges method Commits all the changes made to this row since the last time Accep...
2014-01-06, 1888👍, 0💬

If I have more than one version of one assemblies, then how will I use old version in my application? Give an example.
If I have more than one version of one assemblies, then how will I use old version in my application? Give an example. Change the assembly version number in the AssemblyInfo.vb file
2014-11-12, 1887👍, 0💬

The namespaces needed to use data mechanisms in ASP.NET pages are...
The namespaces needed to use data mechanisms in ASP.NET pages are... The namespaces needed to use data mechanisms in ASP.NET pages are * System.Data, System.Data.OleDb or System.Data.SQL * System.Data, System.Data.ODBC * System.Data, System.Data.DataRow * System.Data.DataRowCollection, System.Data.D...
2014-07-17, 1884👍, 0💬

What’s typical about a Windows process in regards to memory allocation?
What’s typical about a Windows process in regards to memory allocation? Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down...
2013-11-07, 1883👍, 0💬

What is a Web Service?
What is a Web Service? A web service is a software component that exposes itself through the open communication channels of the Internet. Applications running on remote machines, on potentially different platforms, can access these components in a language and platform-independent manner. A Web Serv...
2013-11-05, 1883👍, 0💬

Explain differences between server.transfer and server.execute method?
Explain differences between server.transfer and server.execute method? Answer1: server.transfer-&gt; transefers the server’s control to the requested page given in the parameter. server.Execute-&gt; executes the requested page from the current page itself,with no change in the address bar...
2014-10-22, 1882👍, 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, 1877👍, 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, 1877👍, 0💬

What is the correct declaration of main?
What is the correct declaration of main? There are two valid declarations: int main(void) int main(int argc, char **argv) although they can be written in a variety of ways. The second parameter may be declared char *argv[] , you can use any names for the two parameters, and you can use old-style syn...
2015-12-22, 1874👍, 0💬

Using COM Component in .Net
Using COM Component in .Net As most of you know that .Net does not encourage the development of COM components and provides a different solution to making reusable components through Assemblies. But, there are a lot of COM components present which our .Net application might need to use. Fortunately,...
2013-11-04, 1874👍, 0💬

Why should I use the -w argument with my Perl programs?
Why should I use the -w argument with my Perl programs? Many Perl developers use the -w option of the interpreter, especially during the development stages of an application. This warning option turns on many warning messages that can help you understand and debug your applications. To use this opti...
2013-08-28, 1874👍, 0💬

<< < 148 149 150 151 152 153 154 155 156 157 158 > >>   Sort: Date