How to get SQL query result in a list
public class users
{
public string user_id { get; set; }
...

Let us consider a table have three fields say Id,Mark,and name.and table name is student.
For getting second largest mark from student table you can use following sql query.
Step 1: get top 2 marks from student table in descending order
Select top 2 mark from student order by Mark desc
Step 2: find minimum from the inner query
Select min(mark) from (inner query)
So the final query will be
Select min(mark) from (select top 2 mark from student order by Mark desc...

Call webservice in asp.net using javascript
Create a webservice
(eg:WebService1.asmx)
and add following codes in your webservice cs page[WebMethod]public
string
GetCurrentTime(string
name){return
"Hello
"
+ name...

How To use Grouping in Asp.net
In Windows forms we group box for grouping the items.In web forms we use fieldset for grouping certain controls
<fieldset>
<legend>Title:</legend>
...
Codework Solutions Infopark Hiring Freshers & Experienced Candidates
Freshers ( 2 openings)
B.Tech or M.C.A with minimum 70% marks. Candidates should have good knowledge in C++ or C#.
Email: hr@codework-solutions.com
Windows...

SUYATI TECHNOLOGIES WALK IN
SUYATI TECHNOLOGIES walk in-suyati technologis hiring-suyati technologies job opening 2014 november-suyati technologies interview-suyati technologies interview questions-suyati...

CALL J QUERY FUNCTION IN UPDATEPANEL
$('document').ready(function () {
});
normally we use document.ready function in aspx page but it will call only one time(means first time of page loading)if you want to peform this action in multiple time in an upadate panel you can use the following method
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function ()
{
});
jquery problem in ajax update panel,jquery function not works...

InnerText alternative in mozilla
Normally we can change the text of html or asp label by using javacsript in following way,but it will not works in mozilla firefox
document.getElementById("label1").innerText =...