Click here to Skip to main content
16,005,467 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSave Button is not working in Telerik Rad Window Pin
indian14325-Jun-10 9:11
indian14325-Jun-10 9:11 
AnswerRe: Save Button is not working in Telerik Rad Window Pin
thatraja25-Jun-10 10:56
professionalthatraja25-Jun-10 10:56 
AnswerRe: Save Button is not working in Telerik Rad Window Pin
Vimalsoft(Pty) Ltd25-Jun-10 11:00
professionalVimalsoft(Pty) Ltd25-Jun-10 11:00 
QuestionTrying to export from ASP.NET to Powerpoint 2007 [modified] Pin
watchdogger25-Jun-10 5:18
watchdogger25-Jun-10 5:18 
AnswerRe: Trying to export from ASP.NET to Powerpoint 2007 Pin
Adam R Harris25-Jun-10 11:11
Adam R Harris25-Jun-10 11:11 
GeneralRe: Trying to export from ASP.NET to Powerpoint 2007 Pin
watchdogger29-Jun-10 10:08
watchdogger29-Jun-10 10:08 
GeneralRe: Trying to export from ASP.NET to Powerpoint 2007 Pin
Adam R Harris29-Jun-10 13:40
Adam R Harris29-Jun-10 13:40 
QuestionSearch Control in GridView in asp.net Pin
anish27patel25-Jun-10 4:30
anish27patel25-Jun-10 4:30 
Hello All,

I need to search recursive control inside gridview

i have written below code but i can not able to find the control in which are define in <asp:templatefield> I have taken on linkbutton inside templated field but when i try to search control but i didn't get.

Code :

public static Control FindControlRecursive(Control Root, string Id)
{
if (Root.ID == Id)
return Root;

foreach (Control Ctl in Root.Controls)
{
Control FoundCtl = FindControlRecursive(Ctl, Id);
if (FoundCtl != null)
return FoundCtl;
}
return null;
}

but it return null while i am try to find out control like

LinkButton B = FindControlRecursive(GridView1, "lnk") as LinkButton;

can you please help how to resolved above issue?

Thanks in advance,
Anish Patel

AnswerRe: Search Control in GridView in asp.net Pin
PunkIsNotDead25-Jun-10 12:20
PunkIsNotDead25-Jun-10 12:20 
QuestionFront end & Back end Pin
Gjm25-Jun-10 3:36
Gjm25-Jun-10 3:36 
AnswerRe: Front end & Back end Pin
JamieRushton_25-Jun-10 3:43
JamieRushton_25-Jun-10 3:43 
QuestionSet label's text clientside and use it to set button's text server side. Pin
Hardus Lombaard25-Jun-10 3:34
Hardus Lombaard25-Jun-10 3:34 
AnswerRe: Set label's text clientside and use it to set button's text server side. Pin
JamieRushton_25-Jun-10 3:52
JamieRushton_25-Jun-10 3:52 
GeneralRe: Set label's text clientside and use it to set button's text server side. Pin
Hardus Lombaard25-Jun-10 4:11
Hardus Lombaard25-Jun-10 4:11 
GeneralRe: Set label's text clientside and use it to set button's text server side. Pin
JamieRushton_25-Jun-10 4:19
JamieRushton_25-Jun-10 4:19 
GeneralRe: Set label's text clientside and use it to set button's text server side. Pin
Hardus Lombaard25-Jun-10 4:30
Hardus Lombaard25-Jun-10 4:30 
GeneralRe: Set label's text clientside and use it to set button's text server side. Pin
JamieRushton_25-Jun-10 4:39
JamieRushton_25-Jun-10 4:39 
GeneralRe: Set label's text clientside and use it to set button's text server side. Pin
Hardus Lombaard25-Jun-10 4:54
Hardus Lombaard25-Jun-10 4:54 
QuestionEnable button and change label's text clientside Pin
Hardus Lombaard25-Jun-10 2:10
Hardus Lombaard25-Jun-10 2:10 
AnswerRe: Enable button and change label's text clientside Pin
Not Active25-Jun-10 2:18
mentorNot Active25-Jun-10 2:18 
AnswerRe: Enable button and change label's text clientside Pin
Ankur\m/25-Jun-10 3:01
professionalAnkur\m/25-Jun-10 3:01 
GeneralRe: Enable button and change label's text clientside Pin
michaelschmitt25-Jun-10 4:10
michaelschmitt25-Jun-10 4:10 
GeneralRe: Enable button and change label's text clientside Pin
Hardus Lombaard25-Jun-10 4:21
Hardus Lombaard25-Jun-10 4:21 
GeneralRe: Enable button and change label's text clientside Pin
T M Gray25-Jun-10 9:29
T M Gray25-Jun-10 9:29 
GeneralRe: Enable button and change label's text clientside Pin
raju melveetilpurayil26-Jun-10 0:08
professionalraju melveetilpurayil26-Jun-10 0:08 

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.