Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7794489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:47:26+00:00 2026-06-01T22:47:26+00:00

Like for a single value i easily work, or also true false condition. like

  • 0

Like for a single value i easily work, or also true false condition.
like getting a single value from database

                    string i = "";
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.CommandText = "SelectPass";
                    cmd.Parameters.AddWithValue("@userID", context.Request.QueryString["id"]);
                    conn.Open();
                    SqlDataReader reader = cmd.ExecuteReader();
                    while (reader.Read())
                    {
                        i = reader["Password"].ToString();
                    }
                    reader.Close();
                    conn.Close();
                    if (i == "")
                    { context.Response.Write("False"); }
                    else
                    {
                        context.Response.Write(i);
                    }

and in client side easily showing the value in one variable.

 function abc()
{   
    $.get('\HandlerResetPass.ashx?id=' + $('#txtUserId').val()+'&lbl='+ $('#lblPasswo').val(), callback);
    function callback(data)
    {

    if (data == "False")
    {
    alert('ID doesn\'t exist try again..!')
    return false;
    }
    else 
    {
    $('#tblPassWord').show();
    $('#tblprofile').hide();
    role = data;
    }
    }
}

But how working with A dataset.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T22:47:27+00:00Added an answer on June 1, 2026 at 10:47 pm

    we can return data set from handler by useing that king of work.

       public void ProcessRequest(HttpContext context)
        {
            string connect = (@"Connection string");
    
            using (SqlConnection conn = new SqlConnection(connect))
            {
                using (SqlCommand cmd = new SqlCommand("", conn))
                {
                    string i = "";
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.CommandText = "Selecttest";
                    cmd.Parameters.AddWithValue("@_ID", context.Request.QueryString["id"]);
                    conn.Open();
                    SqlDataAdapter da = new SqlDataAdapter();
                    da.SelectCommand = cmd;
                    DataSet ds = new DataSet();
                    da.Fill(ds);
                    conn.Close();
                    string ans = "";
                    ans = Convert.ToString(ds.Tables[0].Rows[0]["name"])+",";
                    ans += Convert.ToString(ds.Tables[0].Rows[0]["age"]);
                    context.Response.Write(ans);
                }
            }
        }
    

    Or in client side we get these two values by this method.

     function abc()
    {
    $.get('\Handler1.ashx?id=' + $('#txtID').val(), callback);
     function callback(data)
     {
    
        var arr = data.split(',');  
        $("#name").html(arr[0]);   
        $("#age").html(arr[1]);  
     }  
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to get a single value from my table in a database. They
Looking for the simplest way to get a single value from a database. This
I'd like to return a collection plus a single value. Presently I am using
I want to split a command line like string in single string parameters. How
Let's say you have a database with a single table like... --------------------------------------------- | Name
I know how to perform an SQL LIKE % query for a single value
I would like to output the following table from my database DateTime | Measure
I'd like to convert a single value into a collection of multiple characteristics, without
I would like to update 3 rows of a single table, with different values
I'd like for a single control to show a rich:popupPanel if it isn't visible,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.