Click here to Skip to main content
16,011,428 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Placing images on runtime [modified] Pin
Fahad Wali2-Aug-06 20:57
Fahad Wali2-Aug-06 20:57 
AnswerRe: Placing images on runtime Pin
l0kke3-Aug-06 6:24
l0kke3-Aug-06 6:24 
GeneralRe: Placing images on runtime Pin
Fahad Wali3-Aug-06 21:28
Fahad Wali3-Aug-06 21:28 
GeneralRe: Placing images on runtime Pin
l0kke4-Aug-06 9:43
l0kke4-Aug-06 9:43 
GeneralRe: Placing images on runtime Pin
Fahad Wali4-Aug-06 21:16
Fahad Wali4-Aug-06 21:16 
GeneralRe: Placing images on runtime [modified] Pin
l0kke6-Aug-06 1:58
l0kke6-Aug-06 1:58 
GeneralRe: Placing images on runtime [modified] Pin
Fahad Wali7-Aug-06 20:28
Fahad Wali7-Aug-06 20:28 
GeneralRe: Placing images on runtime Pin
l0kke8-Aug-06 11:19
l0kke8-Aug-06 11:19 
You can write this code in your event handler:

protected void myCheckbox_CheckedChanged(object sender, EventArgs e)
{
string senderId = ((Checkbox)sender).ID;
bool enableOthers = !((Checkbox)sender).Checked;

foreach(System.Web.UI.Control control in placeHolder.Controls)
{
if (control.GetType().ToString() == "System.Web.UI.WebControls.Checkbox")
{
if (control.ID != senderId) control.Enabled = enableOthers;
}
}
}

I don't want to be inpertinent, but if you ask for a code allways when you have a problem, you will never be a programmer Wink | ;)
You should try to do such a simple algorithm yourself...

Pilo



GeneralRe: Placing images on runtime Pin
Fahad Wali9-Aug-06 21:36
Fahad Wali9-Aug-06 21:36 
QuestionJavascript reglar expression Pin
Wesley Samuel1-Aug-06 21:32
Wesley Samuel1-Aug-06 21:32 
AnswerRe: Javascript reglar expression [modified] Pin
Guffa2-Aug-06 2:27
Guffa2-Aug-06 2:27 
QuestionTutorial Pin
isaii1-Aug-06 21:24
isaii1-Aug-06 21:24 
AnswerRe: Tutorial Pin
Kevin McFarlane1-Aug-06 23:15
Kevin McFarlane1-Aug-06 23:15 
AnswerRe: Tutorial Pin
MudkiSekhon1-Aug-06 23:23
MudkiSekhon1-Aug-06 23:23 
QuestionASP NET & ActiveX Pin
bat762301-Aug-06 20:26
bat762301-Aug-06 20:26 
AnswerRe: ASP NET & ActiveX Pin
minhpc_bk2-Aug-06 15:42
minhpc_bk2-Aug-06 15:42 
QuestionFile uploading problem Pin
Prasad.garlapati1-Aug-06 20:23
Prasad.garlapati1-Aug-06 20:23 
AnswerRe: File uploading problem Pin
MudkiSekhon1-Aug-06 23:28
MudkiSekhon1-Aug-06 23:28 
AnswerRe: File uploading problem Pin
Paddy Boyd1-Aug-06 23:47
Paddy Boyd1-Aug-06 23:47 
QuestionImage Display Problem in ASP.net 2.0 Pin
sabby20061-Aug-06 19:56
sabby20061-Aug-06 19:56 
AnswerRe: Image Display Problem in ASP.net 2.0 Pin
l0kke1-Aug-06 23:21
l0kke1-Aug-06 23:21 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20062-Aug-06 21:37
sabby20062-Aug-06 21:37 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
l0kke3-Aug-06 6:37
l0kke3-Aug-06 6:37 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
sabby20063-Aug-06 22:43
sabby20063-Aug-06 22:43 
GeneralRe: Image Display Problem in ASP.net 2.0 Pin
l0kke4-Aug-06 9:45
l0kke4-Aug-06 9:45 

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.