Click here to Skip to main content
15,917,702 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: type does not contain a definition for Identifier Pin
Yusuf9-Apr-09 6:03
Yusuf9-Apr-09 6:03 
QuestionDefault date format problem Pin
madgardener9-Apr-09 2:09
madgardener9-Apr-09 2:09 
QuestionDisplaying menu items Pin
scar_face9-Apr-09 1:02
scar_face9-Apr-09 1:02 
AnswerRe: Displaying menu items Pin
Ashfield9-Apr-09 1:40
Ashfield9-Apr-09 1:40 
AnswerRe: Displaying menu items Pin
Mihirdash9-Apr-09 2:19
professionalMihirdash9-Apr-09 2:19 
QuestionHow to Download images from server (ftp) to local system..ASP.Net with C# Pin
ven3219-Apr-09 1:00
ven3219-Apr-09 1:00 
AnswerRe: How to Download images from server (ftp) to local system..ASP.Net with C# Pin
Ashfield9-Apr-09 1:41
Ashfield9-Apr-09 1:41 
QuestionProblem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:02
professionalVimalsoft(Pty) Ltd9-Apr-09 0:02 
Good Day All

I have a Listbox with name lstbxTags and it get populated fine and i have another two List boxes named ListBox1 and lstbxLecturers in lstbxTags_SelectedIndexChanged event of the Listbox lstbxTags i have the Following Code

protected void lstbxTags_SelectedIndexChanged(object sender, EventArgs e)
 {
     //This Session Variable will Hold the ID of the selected Staff

     BLL.BLL obj = new BLL.BLL();

     DataSet ds = new DataSet();

     String SelectedStaff = Convert.ToString(lstbxTags.SelectedItem.Value);

     //Assign the returned id to the Session variable
     int Selected_Staff = obj.Get_Selected_id_of_Tag(SelectedStaff, Convert.ToString(Session["ActiveDatabase"]));

     ds = obj.FILTER_TAG(Selected_Staff, Convert.ToString(Session["ActiveDatabase"]));

     //Binding the Listboxes

     ListBox1.DataSource = ds;

     ListBox1.DataTextField = "Descr";

     ListBox1.Visible = true;

     lstbxLecturers.Visible = false;

     ListBox1.DataBind();


 }


Now when i select something in the lstbxTags, nothing gets Populated in ListBox1, i have step through the code and it goes without a Problem.

what is the Problem

Thanks

Vuyiswa Maseko,

Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.tiyaneProperties.co.za
vuyiswa@its.co.za
www.ITS.co.za

AnswerRe: Problem with ListBox Pin
monu nair9-Apr-09 0:06
monu nair9-Apr-09 0:06 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:09
professionalVimalsoft(Pty) Ltd9-Apr-09 0:09 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:15
professionalVimalsoft(Pty) Ltd9-Apr-09 0:15 
AnswerRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 0:17
professionalAbhijit Jana9-Apr-09 0:17 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:29
professionalVimalsoft(Pty) Ltd9-Apr-09 0:29 
GeneralRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 1:22
professionalAbhijit Jana9-Apr-09 1:22 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 1:27
professionalVimalsoft(Pty) Ltd9-Apr-09 1:27 
GeneralRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 1:59
professionalAbhijit Jana9-Apr-09 1:59 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 2:06
professionalVimalsoft(Pty) Ltd9-Apr-09 2:06 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 3:56
professionalVimalsoft(Pty) Ltd9-Apr-09 3:56 
GeneralRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 4:24
professionalAbhijit Jana9-Apr-09 4:24 
AnswerRe: Problem with ListBox Pin
monu nair9-Apr-09 0:33
monu nair9-Apr-09 0:33 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:38
professionalVimalsoft(Pty) Ltd9-Apr-09 0:38 
GeneralRe: Problem with ListBox Pin
monu nair9-Apr-09 0:41
monu nair9-Apr-09 0:41 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 1:23
professionalVimalsoft(Pty) Ltd9-Apr-09 1:23 
QuestionReport Service Forms Authentication Pin
mehrdadc489-Apr-09 0:02
mehrdadc489-Apr-09 0:02 
QuestionList control problem in rdlc Pin
tauras818-Apr-09 22:10
tauras818-Apr-09 22:10 

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.