Click here to Skip to main content
15,888,113 members
Home / Discussions / C#
   

C#

 
GeneralRe: how can i use diffrence neuron count in difference layer Pin
Alan Balkany21-Sep-10 4:32
Alan Balkany21-Sep-10 4:32 
AnswerRe: how can i use diffrence neuron count in difference layer Pin
Henry Minute21-Sep-10 4:31
Henry Minute21-Sep-10 4:31 
GeneralRe: how can i use diffrence neuron count in difference layer Pin
harold aptroot21-Sep-10 5:13
harold aptroot21-Sep-10 5:13 
QuestionExtensions Property Pin
reza assar21-Sep-10 3:22
reza assar21-Sep-10 3:22 
AnswerRe: Extensions Property Pin
Dave Kreskowiak21-Sep-10 3:33
mveDave Kreskowiak21-Sep-10 3:33 
GeneralRe: Extensions Property Pin
reza assar21-Sep-10 18:24
reza assar21-Sep-10 18:24 
GeneralRe: Extensions Property Pin
Dave Kreskowiak21-Sep-10 19:26
mveDave Kreskowiak21-Sep-10 19:26 
QuestionList view problem Pin
annie_bel21-Sep-10 3:16
annie_bel21-Sep-10 3:16 
hi!

I have a listview , which contains some records with checkbox.
I have also a linkbutton for select all, delete and so on.
my query is, when i click on select all(link button) all checkbox has select.
please help me.

i use this code, but not work :

protected void lnkSelect_Click(object sender, EventArgs e)
    {
        foreach (ListViewDataItem lvItem in lstView.Items)
        {
            CheckBox check = (CheckBox)lvItem.FindControl("chksel");       
            if (check != null && check.Checked)
            {
                  
               check.Checked = true;
            }
        }       
    }


thanx & regards
AnswerMessage Closed Pin
21-Sep-10 3:36
stancrm21-Sep-10 3:36 
GeneralRe: List view problem Pin
annie_bel21-Sep-10 3:47
annie_bel21-Sep-10 3:47 
GeneralRe: List view problem Pin
John.Smith770021-Sep-10 6:28
John.Smith770021-Sep-10 6:28 
QuestionDatabase migration Pin
anishkannan21-Sep-10 1:52
anishkannan21-Sep-10 1:52 
AnswerRe: Database migration Pin
Bernhard Hiller21-Sep-10 2:11
Bernhard Hiller21-Sep-10 2:11 
GeneralRe: Database migration Pin
anishkannan21-Sep-10 2:17
anishkannan21-Sep-10 2:17 
GeneralRe: Database migration Pin
anishkannan21-Sep-10 2:17
anishkannan21-Sep-10 2:17 
QuestionCheckbox List Item Value Pin
SatyaKeerthi1520-Sep-10 23:25
SatyaKeerthi1520-Sep-10 23:25 
AnswerRe: Checkbox List Item Value Pin
Henry Minute20-Sep-10 23:30
Henry Minute20-Sep-10 23:30 
QuestionHandling mouse events in off-screen rendering Pin
HalliHaida20-Sep-10 23:04
HalliHaida20-Sep-10 23:04 
QuestionReading large data with TcpClient Pin
Chesnokov Yuriy20-Sep-10 20:47
professionalChesnokov Yuriy20-Sep-10 20:47 
AnswerRe: Reading large data with TcpClient Pin
Pete O'Hanlon20-Sep-10 22:25
mvePete O'Hanlon20-Sep-10 22:25 
AnswerRe: Reading large data with TcpClient Pin
Chesnokov Yuriy21-Sep-10 0:30
professionalChesnokov Yuriy21-Sep-10 0:30 
GeneralRe: Reading large data with TcpClient Pin
Pete O'Hanlon21-Sep-10 1:21
mvePete O'Hanlon21-Sep-10 1:21 
AnswerMessage Closed Pin
21-Sep-10 1:05
stancrm21-Sep-10 1:05 
GeneralRe: Reading large data with TcpClient Pin
Chesnokov Yuriy21-Sep-10 1:37
professionalChesnokov Yuriy21-Sep-10 1:37 
GeneralRe: Reading large data with TcpClient Pin
David Knechtges21-Sep-10 3:19
David Knechtges21-Sep-10 3:19 

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.