GeekInterview.com
Answered Questions

What is the difference between server.Transfer and response.Redirect

Asked By: sambit | Asked On: Jul 3rd, 2007

Answered by: priyansh rawal on: Apr 22nd, 2010

Server.transfer: Method ends the current webform and will executes the next webform.


Response.redirect: it helps to navigate between the webforms through code and this is equal to clicking a hyperlink..

Answered by: adib4u2000 on: Dec 1st, 2008

One more thing...
Server.Transfer supports only ASPX pages but Response.Redirect applies even HTML pages

Difference between ADO.Net data set and ADO record set

Asked By: Dhaval | Asked On: Feb 15th, 2007

Star Read Best Answer

Editorial / Best Answer

Answered by: ramakrishnag1982

View all questions by ramakrishnag1982   View all answers by ramakrishnag1982

Member Since Nov-2006 | Answered On : Aug 12th, 2007

1) A DataSet can represent an entire relational database in memory, complete with tables, relations, and views, A Recordset can not.

2) A DataSet is designed to work without any continuing connection to the original data source; Recordset maintains the contentious connection with the original data source.

3) There's no concept of cursor types in a DataSet, They are bulk loaded, while Recordset work with cursors and they are loaded on demand.

4) DataSets have no current record pointer, you can use For Each loops to move through the data. Recordsets have pointers to move through them.

Answered by: Kishore on: Jan 24th, 2013

Please need some more related information about the each topic..It is not sufficient to answer in Interviews.

Answered by: sathin on: Oct 29th, 2009

To get the data from a database and put it on a data control In ADO they used recordset In ADO.Net they used dataset Record set is a connection oriented architecture whereas dataset supports a c...

Explain the differences between ADO and ADO.Net, asp and ASP.Net , vb and vb.Net

Asked By: srennu | Asked On: Sep 18th, 2006

Star Read Best Answer

Editorial / Best Answer

Answered by: ramakrishnag1982

View all questions by ramakrishnag1982   View all answers by ramakrishnag1982

Member Since Nov-2006 | Answered On : Dec 12th, 2007

Asp:

* ASP is Interpreted language based on scripting languages like Jscript or VBScript.
* ASP has Mixed HTML and coding logic.
* Limited development and debugging tools available.
* Limited OOPS support.
* Limited session and application state management.
* Poor Error handling system.
* No in-built support for XML.
* No fully distributed data source support.

Asp.Net:

* ASP.Net is supported by compiler and has compiled language support.
* Separate code and design logic possible.
* Variety of compilers and tools available including the Visual studio.Net.
* Completely Object Oriented.
* Complete session and application state management.
*  Full proof error handling possible.
* Full XML Support for easy data exchange.
* Fully distributed data source support.

Answered by: ramakrishnag1982 on: Dec 12th, 2007

Asp:* ASP is Interpreted language based on scripting languages like Jscript or VBScript. * ASP has Mixed HTML and coding logic. * Limited development and debugging tools available. * Limited OOPS supp...

Answered by: Guest on: Jan 4th, 2007

ADO1.  This object model could be used even for non RDBMS products.  We can read data from xml, excel, csv files also.2.  ADO objects are dependent on OLEDB providers and OLEDB provider...

What is the difference between data reader & data set

Asked By: ratan | Asked On: Jun 30th, 2006

Answered by: Pendurti on: Sep 14th, 2008

Data ReaderThis is Connection oriented and can read only one record at a time. It has got no capability of reading multiple tables at a time. This needs a live connection all the time. Data SetTh...

Answered by: sureshnaspuri on: Jul 10th, 2008

data reader:1.It uses the connected architecture.2.It can be used as Read n forward only3.Updations are not possible4.It fectches only one record at a time.5.It is faster compare to data set.Data Set:...

What is ADO.Net

Asked By: shruthi | Asked On: Oct 3rd, 2005

Star Read Best Answer

Editorial / Best Answer

Answered by: Ranjit

View all answers by Ranjit

Member Since Oct-2005 | Answered On : Nov 28th, 2005

ADO.NET is the primary relational data access model for Microsoft .NET-based applications. It may be used to access data sources for which there is a specific .NET Provider, or, via a .NET Bridge Provider, for which there is a specific OLE DB Provider, ODBC Driver, or JDBC Driver. ADO.NET is sometimes considered an evolution of ADO technology, but it is important to note that some major changes were made between the two.

Answered by: Pendurti on: Sep 11th, 2008

ADO.NET is something that allows us to interact with relational databases and other data sources. It is a technology that ASP.NET applications use to communicate with a database, whether we need to add a new customer record, make a  purchase, or display a product catalog. 

Answered by: shravanmadhastu on: May 24th, 2008

ADO.NET stands Active X Data Objects.Net.It is used in microsoft.net to communicate with datastore.ADO.NET is inherited from System.Data.dll name spaceADO.NET has two componentsthey are 1. .Net Data p...

What languages does the .Net framework support?

Asked By: Srikanth | Asked On: Sep 13th, 2005

Answered by: silambarasan.P on: Jan 31st, 2013

.NET support 44 languages only.

Answered by: Rajasekar.K on: Apr 7th, 2012

A .NET Framework assembly containing resources specific to a given language. Using satellite assemblies, you can place the resources for different languages in different assemblies, and the correct assembly is loaded into memory only if the user elects to view the application in that language

What platforms does the .Net framework run on?

Asked By: Srikanth | Asked On: Sep 13th, 2005

The runtime supports windows xp, windows 2000, nt4 sp6a and windows me/98. Windows 95 is not supported. Some parts of the framework do not work on all platforms - for example, ASP.Net is only supported on windows XP and windows 2000. Windows 98/me cannot be used for development.Iis is not supported on...

Answered by: ramakrishnag1982 on: Aug 12th, 2007

The runtime supports Windows XP, Windows 2000, NT4 SP6a and Windows ME/98. Windows 95 is not supported. Some parts of the framework do not work on all platforms - for example, ASP.NET is only suppor...

Answered by: Chandra Kumar on: May 30th, 2006

The .Net Framework runs on Windows XP, Windows Server 2003, Windows 2000, NT Server 4.0, Windows 98, or Windows ME, although ASP.NET runs only on the first 3.

What is .Net?

Asked By: Srikanth | Asked On: Sep 13th, 2005

According to Microsoft, .Net is a "revolutionary new platform, built on open internet protocols and standards, with tools and services that meld computing and communications in new ways".A more practical definition would be that .Net is a new environment for developing and running software applications,...

Answered by: Shailendra_wadile on: May 30th, 2008

.NET is a plattform that creates distributed applications and which is language independant.

Answered by: chandu on: Oct 19th, 2007

According to Microsoft, .NET is a "revolutionary new platform, built on open Internet protocols and standards, with tools and services that meld computing and communications in new ways".A m...

What is the difference between ASP.Net and asp

Asked By: Interview Candidate | Asked On: Sep 8th, 2005

Answered by: nirdesh gurjar on: Oct 10th, 2011

Difference between ASP and ASP.NET ASP.NET: ASP.Net web forms have a code behind file which contains all event handling code. ASP.Net web forms inherit the class written in code behind. ASP.Net web f...

Answered by: Ravi kumar on: Jul 12th, 2011

Asp.net is a next of Asp but it's not a upgraded version of Asp. Asp is a interpreted language based on a scripting language like jscripts or vbscript.Asp limited development and debugging tools avail...

What is difference in record set and dataset

Asked By: Interview Candidate | Asked On: Jul 31st, 2005

Recordset provides data one row at a time.Dataset is a data structure which represents the complete table data at same time.Recordset has the logic to update and manipulate datadataset is just a data store and manipulation is done through dataadapters in .Net. 

Answered by: veluworld on: Aug 28th, 2008

Recordset is the Read only & forward only mechanism. But Dataset is the Editable. Recordset is connection oriented and Dataset need connection once to dump the data from the data base. Dataset holds more than one table at a time but recordset holds only one.

Answered by: ramakrishnag1982 on: Aug 12th, 2007

1) A DataSet can represent an entire relational database in memory, complete with tables, relations, and views, A Recordset can not.2) A DataSet is designed to work without any continuing connection t...

What are the primitive types in Java

Asked By: Interview Candidate | Asked On: Jun 3rd, 2005

Answered by: sampra on: Feb 14th, 2008

primtive datatyp is non object datatype
int chat short byte long float double boolean

Answered by: teju on: Nov 5th, 2007

Primitive type means .int char double float string single long .............

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us: