GeekInterview.com
Series: Subject: Topic:

ASP.NET FAQ

Showing Questions 1 - 20 of 298 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

Which of the following is not a member of ADOdbcommand object

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: advanceda) executereaderb) executescalarc) executestreamd) opene) commandtext

Answered by: tsegay on: Apr 25th, 2013

C) ExecuteStream

Answered by: rpalanivel83 on: Aug 8th, 2006

C. ExecuteStream

D. Open

Both are not a member of  ADODB Command Object

Whch of the following is not a member of response object?

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: advanceda) clearb) writec) executed) flush

Answered by: sarita on: Apr 25th, 2013

Clear

Answered by: Santro on: Jan 7th, 2006

Execute

Postback occurs in which of the following forms

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: beginnera) winformsb) HTMLformsc) webforms

Answered by: medealastra on: Apr 16th, 2013

web forms only

Answered by: Lipika Sarkar on: Mar 26th, 2013

Web forms only

Which one of the following namespaces contains the definition for idbconnection

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: advanceda) system.Data.Interfacesb) system.Data.Commonc) system.Datad) system.Data.Connection

Answered by: nithya_jganesh on: Mar 11th, 2013

System.Data

Answered by: Praveen Kumar on: Aug 27th, 2011

C) System.Data

The first event to be triggered in an aspx page is

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: beginnera) page_load()b) page_init()c) page_click()

Answered by: chandu sonkar on: Feb 13th, 2013

Page_Init(object sender,EventsArgs e)
{
}

Answered by: srinu on: Jan 25th, 2013

page_init()

What is the default authentication mode for iis

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: intermediatea) windowsb) anonymousc) basic authenticationd) none

Answered by: Sameer on: Jan 25th, 2013

B) Anonymous

Answered by: srinu on: Jan 25th, 2013

A) Windows

Where is the default session data is stored in ASP.Net

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: intermediatea) inprocessb) stateserverc) SQL serverd) all of the above

Answered by: srinu on: Jan 25th, 2013

A) InProcess

Answered by: yogesh on: Oct 22nd, 2012

InProcess

How do you explicitly kill a user’s session ?

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: intermediatea) session.Close ( )b) session.Discard ( )c) session.Abandond) session.End

Answered by: srinu on: Jan 25th, 2013

C) Session.Abandon

Answered by: santosh on: Jan 20th, 2013

A) Session.Close()

Retrieve value from dataset

Asked By: kalpantpatil | Asked On: Jan 25th, 2011

How to retrieve the third table value from the data set?

Answered by: sandhya on: Oct 25th, 2012

Code
  1. ds.Tables[2].Rows[SpecificRow][SpecificColumn].ToString();
  2. // SpecificRow- is an Row Index
  3. // SpecificColumn - is either DataColumn or Column Name in
  4.         string or Column Index

Which is the executable unit which gets created when we build an ASP.Net application?

Asked By: arya | Asked On: Nov 7th, 2005

Answered by: shashikant_mokashi on: Sep 24th, 2012

DLL

Answered by: sherb on: Mar 3rd, 2006

The sources written into .aspx files are compiled into a .dll file that has the project name and placed into the project's bin folder.

Session object classes are defined in which of the following namespace?

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: intermediatea) system.Web.Uib) system.Web.Sessionstatec) system.Web

Answered by: shashikant mokashi on: Sep 24th, 2012

B) System.Web.SessionState

Answered by: abuadam_24 on: Sep 24th, 2008

system.web

Link button and hyperlink

Asked By: suhaan.suhaan | Asked On: Nov 21st, 2008

What is difference between link button and hyperlink?

Answered by: shashikant_mokashi on: Sep 24th, 2012

HyperLink will not PostBack your page to the server. It will post a simple request to the server for the URL you set as href. The LinkButton works exactly as a normal Button but it looks like an Hyper...

Open new page

Asked By: nitin_751 | Asked On: Jun 1st, 2009

How to open a new page while clicked on link?

Answered by: shashikant_mokashi on: Sep 24th, 2012

Code
  1. <a href="One.aspx" target="_blank">My Link</a>

Adrotator control

Asked By: bijal_69 | Asked On: Mar 22nd, 2010

What is the use of adrotater control?

Answered by: shashikant_mokashi on: Sep 24th, 2012

The AdRotator control is used to display a sequence of ad images.

This control uses an XML file to store the ad information. The XML file must begin and end with an tag. Inside the tag there may be several tags which defines each ad.

Answered by: Tanuja Jaiswal on: Feb 15th, 2012

The AdRotator control is used to display a random selection from a collection of banner advertisements specified in an XML based advertisement file.

Repeater control

Asked By: bijal_69 | Asked On: Mar 22nd, 2010

What is the use of repeater control?

Answered by: shashikant_mokashi on: Sep 24th, 2012

The Repeater control is used to display a repeated list of items that are bound to the control. The Repeater control may be bound to a database table, an XML file, or another list of items.

Windows authentication

Asked By: Diego San | Asked On: Sep 28th, 2009

What object is attached by the current request if one uses windows authentication?

Answered by: shashikant_mokashi on: Sep 24th, 2012

WindowsPrincipal and WindowsIdentity objects are created.

Web controls supports CSS

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: intermediatea) trueb) false

Answered by: Nishant Mittal on: Sep 1st, 2012

true

Answered by: Tanuja Jaiswal on: Feb 15th, 2012

A) true

CSS means Cascading Style Sheets

eg. if we want to set color of a label control we can use CSS styles directly in our control tag.

A web application running on multiple servers is called as

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: beginnera) webformb) webfarmc) website

Answered by: Tanuja Jaiswal on: Feb 15th, 2012

B) Webfarm

Answered by: omkar shinde on: Jan 2nd, 2012

A) WebFarm

What namespace does the web page belong in the .Net framework class hierarchy?

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: beginnera) system.Web.Ui.Pageb) system.Windows.Pagec) system.Web.Page

Answered by: Kishor Khatri on: Jul 5th, 2012

System.Web.UI.Page

Answered by: puneetpthk on: Mar 25th, 2010

System.Web.UI.Page

Which of the following is true ?

Asked By: Interview Candidate | Asked On: Dec 4th, 2005

Skill/topic: beginnera) ispostback is a method of system.Ui.Web.Page classb) ispostback is a method of system.Web.Ui.Page classc) ispostback is a reADOnly property of system.Web.Ui.Page class

Answered by: shivaprasadev on: Jun 22nd, 2012

C) IsPostBack is a readonly property of System.Web.UI.Page class

Answered by: ushalakshmi on: Apr 23rd, 2008

IsPostback is a readonly Property of System.Web.UI.Page class.
It's Correct No-Doubt abt this...................

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.