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

ASP.NET

 
AnswerRe: add images with list item in listbox in asp.net Pin
Yusuf19-Mar-09 6:57
Yusuf19-Mar-09 6:57 
AnswerRe: add images with list item in listbox in asp.net Pin
Abhijit Jana19-Mar-09 18:47
professionalAbhijit Jana19-Mar-09 18:47 
QuestionChecking the fail status of windows service Pin
gottimukkala19-Mar-09 5:06
gottimukkala19-Mar-09 5:06 
AnswerRe: Checking the fail status of windows service Pin
Abhijit Jana19-Mar-09 5:40
professionalAbhijit Jana19-Mar-09 5:40 
AnswerRe: Checking the fail status of windows service Pin
N a v a n e e t h19-Mar-09 6:54
N a v a n e e t h19-Mar-09 6:54 
AnswerRe: Checking the fail status of windows service Pin
Yusuf19-Mar-09 7:03
Yusuf19-Mar-09 7:03 
GeneralRe: Checking the fail status of windows service Pin
gottimukkala19-Mar-09 21:55
gottimukkala19-Mar-09 21:55 
QuestionMultiselect in a Gridview cells Pin
Vimalsoft(Pty) Ltd19-Mar-09 4:45
professionalVimalsoft(Pty) Ltd19-Mar-09 4:45 
Good Day all

Am using Ultragridweb on .NET 2.0. I want to have a multiselect on the grid cells and save it in a Arraylist. So far this is what i did


protected void ultraGridCycles_SelectedCellsChange(object sender, SelectedCellsEventArgs e)
{
    ArrayList array = new ArrayList();


    foreach (UltraGridCell cell in ultraGridCycles.DisplayLayout.SelectedCells)
    {
        if (cell.Value != null && cell.Value.ToString() != "")
        {

            array.Add(cell.Value);

            Session["Cycles"] = array;
        }
    }

}


When i try to do Multi select it brings me only the last value i selected.


How can i do this


Thank you

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: Multiselect in a Gridview cells Pin
N a v a n e e t h19-Mar-09 6:57
N a v a n e e t h19-Mar-09 6:57 
GeneralRe: Multiselect in a Gridview cells Pin
Vimalsoft(Pty) Ltd19-Mar-09 20:23
professionalVimalsoft(Pty) Ltd19-Mar-09 20:23 
QuestionDisabling DropDownlist through javascript Pin
Salesh Mishra19-Mar-09 3:05
professionalSalesh Mishra19-Mar-09 3:05 
AnswerRe: Disabling DropDownlist through javascript Pin
Paddy Boyd19-Mar-09 4:19
Paddy Boyd19-Mar-09 4:19 
Questionbrowser cache refresh on back button click Pin
kc_krishnan19-Mar-09 2:23
kc_krishnan19-Mar-09 2:23 
AnswerRe: browser cache refresh on back button click Pin
iamalik19-Mar-09 7:42
professionaliamalik19-Mar-09 7:42 
Questionredirect to other website on click of menu item Pin
BalasubramanianK19-Mar-09 1:44
BalasubramanianK19-Mar-09 1:44 
AnswerRe: redirect to other website on click of menu item Pin
Abhijit Jana19-Mar-09 1:57
professionalAbhijit Jana19-Mar-09 1:57 
GeneralRe: redirect to other website on click of menu item Pin
BalasubramanianK19-Mar-09 4:00
BalasubramanianK19-Mar-09 4:00 
AnswerRe: redirect to other website on click of menu item Pin
Herman<T>.Instance19-Mar-09 2:48
Herman<T>.Instance19-Mar-09 2:48 
GeneralRe: redirect to other website on click of menu item Pin
BalasubramanianK19-Mar-09 3:58
BalasubramanianK19-Mar-09 3:58 
Question[Message Deleted] Pin
gottimukkala19-Mar-09 1:33
gottimukkala19-Mar-09 1:33 
AnswerRe: Problem to connect to the database from windows service Pin
Abhijit Jana19-Mar-09 2:09
professionalAbhijit Jana19-Mar-09 2:09 
QuestionCodeBehind VS WebService Pin
Harvey Saayman19-Mar-09 0:42
Harvey Saayman19-Mar-09 0:42 
AnswerRe: CodeBehind VS WebService [modified] Pin
Vimalsoft(Pty) Ltd19-Mar-09 0:54
professionalVimalsoft(Pty) Ltd19-Mar-09 0:54 
GeneralRe: CodeBehind VS WebService Pin
Abhijit Jana19-Mar-09 2:18
professionalAbhijit Jana19-Mar-09 2:18 
GeneralRe: CodeBehind VS WebService Pin
Vimalsoft(Pty) Ltd19-Mar-09 2:30
professionalVimalsoft(Pty) Ltd19-Mar-09 2:30 

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.