Click here to Skip to main content
15,890,438 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionrebind Gridview after filtering with dropdownlist Pin
Albert8315-Apr-07 12:03
Albert8315-Apr-07 12:03 
AnswerRe: rebind Gridview after filtering with dropdownlist Pin
gauthee15-Apr-07 18:29
gauthee15-Apr-07 18:29 
GeneralRe: rebind Gridview after filtering with dropdownlist Pin
Albert8315-Apr-07 18:33
Albert8315-Apr-07 18:33 
AnswerRe: rebind Gridview after filtering with dropdownlist Pin
Chetan Ranpariya19-Apr-07 23:38
Chetan Ranpariya19-Apr-07 23:38 
GeneralRe: rebind Gridview after filtering with dropdownlist Pin
Albert8320-Apr-07 7:29
Albert8320-Apr-07 7:29 
GeneralRe: rebind Gridview after filtering with dropdownlist [modified] Pin
Chetan Ranpariya22-Apr-07 21:00
Chetan Ranpariya22-Apr-07 21:00 
GeneralRe: rebind Gridview after filtering with dropdownlist Pin
Albert8323-Apr-07 19:42
Albert8323-Apr-07 19:42 
GeneralRe: rebind Gridview after filtering with dropdownlist Pin
Chetan Ranpariya23-Apr-07 20:04
Chetan Ranpariya23-Apr-07 20:04 
Hi,

If you want your grid to be rebound when an item is selected in the dropdownlist, then you should write the code in the "SelectedIndexChanged"
event of the DropDownList.

protected void ddlCategories_SelectedIndexChanged(object sender, EventArgs e)
{
AccessDataSource1.SelectParameters[0].DefaultValue =
ddlCategories.SelectedValue;
GV.DataBind();
}

I hope this will help you.


Thanks and Regards,
Chetan Ranpariya

GeneralRe: rebind Gridview after filtering with dropdownlist Pin
Albert8323-Apr-07 20:08
Albert8323-Apr-07 20:08 
GeneralRe: rebind Gridview after filtering with dropdownlist Pin
Chetan Ranpariya23-Apr-07 20:11
Chetan Ranpariya23-Apr-07 20:11 
QuestionMoving data from one gridview to another gridview Pin
Atif Ali Bhatti15-Apr-07 10:49
Atif Ali Bhatti15-Apr-07 10:49 
Questionsql server n ASP.NET Pin
hariram2815-Apr-07 6:44
hariram2815-Apr-07 6:44 
AnswerRe: sql server n ASP.NET Pin
Jaiprakash M Bankolli15-Apr-07 7:50
Jaiprakash M Bankolli15-Apr-07 7:50 
Questionpage type in ASP.NET Pin
hariram2815-Apr-07 6:17
hariram2815-Apr-07 6:17 
AnswerRe: page type in ASP.NET Pin
Jaiprakash M Bankolli15-Apr-07 7:51
Jaiprakash M Bankolli15-Apr-07 7:51 
AnswerRe: page type in ASP.NET Pin
RichardGrimmer16-Apr-07 0:52
RichardGrimmer16-Apr-07 0:52 
GeneralRe: page type in ASP.NET Pin
hariram2818-Apr-07 7:20
hariram2818-Apr-07 7:20 
GeneralRe: page type in ASP.NET Pin
RichardGrimmer18-Apr-07 21:45
RichardGrimmer18-Apr-07 21:45 
QuestionPopulating and Implementing 4 DropDown Listboxes from one table on the Web Form Pin
koonda00715-Apr-07 3:45
koonda00715-Apr-07 3:45 
AnswerRe: Populating and Implementing 4 DropDown Listboxes from one table on the Web Form Pin
Chetan Ranpariya19-Apr-07 23:43
Chetan Ranpariya19-Apr-07 23:43 
GeneralRe: Populating and Implementing 4 DropDown Listboxes from one table on the Web Form Pin
koonda00721-Apr-07 0:25
koonda00721-Apr-07 0:25 
QuestionDisabled textbox's text disappear after refresh Pin
customise14-Apr-07 22:43
customise14-Apr-07 22:43 
AnswerRe: Disabled textbox's text disappear after refresh Pin
Guffa15-Apr-07 0:10
Guffa15-Apr-07 0:10 
AnswerRe: Disabled textbox's text disappear after refresh Pin
TRK@UK15-Apr-07 4:09
TRK@UK15-Apr-07 4:09 
QuestionAjax Enabled TextBox Pin
monirkuet2414-Apr-07 18:40
monirkuet2414-Apr-07 18:40 

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.