Click here to Skip to main content
15,888,325 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Converting from base10 to base16 and save it in unsigned char array? Pin
Richard MacCutchan19-Sep-12 11:52
mveRichard MacCutchan19-Sep-12 11:52 
QuestionWhat is Common Type System (CTS) in .net framework? Pin
hiredotnet16-Sep-12 19:48
hiredotnet16-Sep-12 19:48 
AnswerRe: What is Common Type System (CTS) in .net framework? Pin
Pete O'Hanlon16-Sep-12 19:56
mvePete O'Hanlon16-Sep-12 19:56 
AnswerRe: What is Common Type System (CTS) in .net framework? Pin
Himanshu Yadav20-Sep-12 8:11
Himanshu Yadav20-Sep-12 8:11 
AnswerRe: What is Common Type System (CTS) in .net framework? Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)22-Sep-12 19:01
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)22-Sep-12 19:01 
QuestionMain components of .NET Framework Pin
hiredotnet16-Sep-12 19:45
hiredotnet16-Sep-12 19:45 
RantRe: Main components of .NET Framework Pin
Paul Conrad16-Sep-12 19:48
professionalPaul Conrad16-Sep-12 19:48 
Questioni m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Rashid Choudhary13-Sep-12 22:27
Rashid Choudhary13-Sep-12 22:27 
i have a drop down list which have three entry.when i select every entry of dropdownlist then the data show into the gridview...my code behind page is


C#
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Net.Mail;
using System.IO;
using System.ComponentModel;
using System.Drawing;
using System.Web.SessionState;

namespace AccountManagement
{
    public partial class Account : System.Web.UI.Page
    {
        SqlConnection con;
       SqlDataAdapter da;
        SqlDataReader dr;
        //DataSet ds1;
       // String Sql;
        //int Count;
        DataTable dt;
        SqlCommand cmd;
        protected void Page_Load(object sender, EventArgs e)
        {
            string s = ConfigurationManager.ConnectionStrings["conn"].ConnectionString;
            con = new SqlConnection(s);
            //if (!IsPostBack)
            //{
            //    bindgrid();
            //    bindlst();
            //}
            con.Open();
        }

        //protected void Button1_Click(object sender, EventArgs e)
        //{
        //    bindgrid();
        //    GridView1.Visible = true;
            
        //}
        public void bindgrid()
        {
            cmd=new SqlCommand ("select distinct Fname,Lname from Client_registration_tbl",con);
            //ds1 = new DataSet();
            con.Open();
            dr = cmd.ExecuteReader();
            //da.Fill(ds1);
            GridView1.DataSource = dr;
            GridView1.DataBind();
            GridView1.Visible = true;
            con.Close();

        }

        public void bindlst()
        {
            da = new SqlDataAdapter("select distinct Fname,Lname from Client_registration_tbl", con);
            dt = new DataTable();
            da.Fill(dt);
            DropDownList1.DataSource = dt;
            DropDownList1.DataBind();
        }
        protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
        {

            da = new SqlDataAdapter("select distinct Fname,Lname from Client_registration_tbl" + DropDownList1.SelectedItem.Text + "", con);
            dt = new DataTable();
            da.Fill(dt);
            GridView1.DataSource = dt;
            GridView1.DataBind();
           
            bindgrid();
            bindlst();
            //GridView1.Visible = true;
        }

      


    }
}

thanksss in advance
AnswerRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. PinPopular
Richard MacCutchan13-Sep-12 23:31
mveRichard MacCutchan13-Sep-12 23:31 
GeneralRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Rashid Choudhary13-Sep-12 23:36
Rashid Choudhary13-Sep-12 23:36 
GeneralRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Pete O'Hanlon13-Sep-12 23:40
mvePete O'Hanlon13-Sep-12 23:40 
GeneralRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Richard MacCutchan14-Sep-12 0:05
mveRichard MacCutchan14-Sep-12 0:05 
GeneralRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Pete O'Hanlon14-Sep-12 0:28
mvePete O'Hanlon14-Sep-12 0:28 
GeneralRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Richard MacCutchan14-Sep-12 0:44
mveRichard MacCutchan14-Sep-12 0:44 
GeneralRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)22-Sep-12 19:06
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)22-Sep-12 19:06 
AnswerRe: i m new in asp.net. and i want 2 call a gridview by dropdownlist. Pin
WebMaster14-Sep-12 9:01
WebMaster14-Sep-12 9:01 
Questionbiztalk server Pin
srinuthippyreddy12-Sep-12 21:12
srinuthippyreddy12-Sep-12 21:12 
AnswerRe: biztalk server Pin
Richard MacCutchan12-Sep-12 22:13
mveRichard MacCutchan12-Sep-12 22:13 
QuestionMultiple Column ComboBox in VB.Net Pin
sivanesh.p12-Sep-12 2:49
sivanesh.p12-Sep-12 2:49 
AnswerRe: Multiple Column ComboBox in VB.Net Pin
Bernhard Hiller12-Sep-12 3:51
Bernhard Hiller12-Sep-12 3:51 
AnswerRe: Multiple Column ComboBox in VB.Net Pin
Dave Kreskowiak12-Sep-12 3:53
mveDave Kreskowiak12-Sep-12 3:53 
AnswerRe: Multiple Column ComboBox in VB.Net Pin
hiredotnet16-Sep-12 19:41
hiredotnet16-Sep-12 19:41 
QuestionHow to disable No of copies in Print Dialog in C#.net Windows Application Pin
sr1599-Sep-12 23:13
sr1599-Sep-12 23:13 
AnswerRe: How to disable No of copies in Print Dialog in C#.net Windows Application Pin
Eddy Vluggen10-Sep-12 2:45
professionalEddy Vluggen10-Sep-12 2:45 
AnswerRe: How to disable No of copies in Print Dialog in C#.net Windows Application Pin
Pete O'Hanlon10-Sep-12 23:27
mvePete O'Hanlon10-Sep-12 23:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.