dev


{ City } delhi
< Country > india
* Profession * software developer
User No # 45758
Total Questions Posted # 2
Total Answers Posted # 3

Total Answers Posted for My Questions # 2
Total Views for My Questions # 9539

Users Marked my Answers as Correct # 42
Users Marked my Answers as Wrong # 5
Questions / { dev }
Questions Answers Category Views Company eMail

How to disable SOAP1.2 in Web Services?

1 ASP.NET 4786

What is Lambda Expression?

1 C Sharp 4753




Answers / { dev }

Question { Accenture, 10523 }

About DataAdapters ?


Answer

SqlDataAdapter is a class of ado.net . This class can't be
inherited. It acts as a interface between our aplication
and database. The commonly used method of this class is Fill
() method which is used to fill the DataTable/DataSet with
the data fetched by query from the database.

Is This Answer Correct ?    0 Yes 0 No

Question { Wipro, 7010 }

About session modes


Answer

Sessions can be (1)InProc and (2)OutProc
InProc Sessions are stored in Woker process while OutProc
Sessions are stored in database.

Is This Answer Correct ?    2 Yes 3 No


Question { IBM, 26176 }

Can we throw exception from catch Block?


Answer

Yes. we can throw the exception from the catch block.
If anyone have confusion then try this code:


protected void Button1_Click(object sender, EventArgs e)
{
try
{
Test();
}
catch (Exception ex)
{
Response.Write(ex.ToString());
}
}
private void Test()
{
try
{
throw new Exception("Dev");
}
catch (Exception ex)
{
throw ex;
}
}

Is This Answer Correct ?    40 Yes 2 No