Click here to Skip to main content
15,903,362 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem with master pages Pin
kbalias27-Aug-07 1:13
kbalias27-Aug-07 1:13 
AnswerRe: Problem with master pages Pin
rihdus27-Aug-07 1:41
rihdus27-Aug-07 1:41 
QuestionCrystal report Pin
BasharatAli27-Aug-07 1:09
BasharatAli27-Aug-07 1:09 
AnswerRe: Crystal report Pin
John-ph27-Aug-07 1:55
John-ph27-Aug-07 1:55 
QuestionPlaying Songs in Video/Audio player in ASP.NET Pin
.NET- India 27-Aug-07 0:34
.NET- India 27-Aug-07 0:34 
AnswerRe: Playing Songs in Video/Audio player in ASP.NET Pin
rihdus27-Aug-07 2:03
rihdus27-Aug-07 2:03 
Questionproblem related 2 checkbox list Pin
biswa4727-Aug-07 0:10
biswa4727-Aug-07 0:10 
AnswerRe: problem related 2 checkbox list [modified] Pin
John-ph27-Aug-07 1:43
John-ph27-Aug-07 1:43 
Enabling and Disabling the TextBox based on the items checked on the checkBoxList can be done in 2 ways. Either you can do it in the client-side or you can do in the server side.

You can access the checkListBox on the client side using the document object...

document.getElementById(checklistbox).options[1].selected = (true or false)

textbox can be enabled and disabled on the client-side using the disabled property of the textbox.

textBox.disabled = (true or false)

If you are doing it on the server-side
enable the AutoPostBack Property of the checkListBox and
write the server side code on the CheckBoxList_SelectedIndexChanged event

textbox can be enabled and disabled on the server-side using the enabled property of the textbox.

textBox.Enabled = (true or false)









Regards
John




Questionpoplate the data from checkboxlist Pin
biswa4727-Aug-07 0:07
biswa4727-Aug-07 0:07 
GeneralRe: poplate the data from checkboxlist Pin
John-ph27-Aug-07 0:26
John-ph27-Aug-07 0:26 
QuestionRe: poplate the data from checkboxlist Pin
biswa4727-Aug-07 0:37
biswa4727-Aug-07 0:37 
AnswerRe: poplate the data from checkboxlist Pin
John-ph27-Aug-07 1:02
John-ph27-Aug-07 1:02 
AnswerRe: poplate the data from checkboxlist Pin
John-ph27-Aug-07 3:13
John-ph27-Aug-07 3:13 
QuestionADrotator not showing images, only alternate text Pin
Kunal P27-Aug-07 0:03
Kunal P27-Aug-07 0:03 
AnswerRe: ADrotator not showing images, only alternate text Pin
John-ph27-Aug-07 1:47
John-ph27-Aug-07 1:47 
GeneralRe: ADrotator not showing images, only alternate text Pin
Kunal P27-Aug-07 19:43
Kunal P27-Aug-07 19:43 
GeneralRe: ADrotator not showing images, only alternate text Pin
John-ph27-Aug-07 22:05
John-ph27-Aug-07 22:05 
GeneralRe: ADrotator not showing images, only alternate text Pin
Kunal P28-Aug-07 18:33
Kunal P28-Aug-07 18:33 
Questionanalysis services connection Pin
deathsurfer26-Aug-07 23:53
deathsurfer26-Aug-07 23:53 
QuestionMenu StaticSelectedStyle problem Pin
kbalias26-Aug-07 23:10
kbalias26-Aug-07 23:10 
QuestionJavascript: Handling "select" tags event Pin
mani_iips26-Aug-07 22:52
mani_iips26-Aug-07 22:52 
AnswerRe: Javascript: Handling "select" tags event Pin
Moeez Ahmed26-Aug-07 23:26
Moeez Ahmed26-Aug-07 23:26 
GeneralRe: Javascript: Handling "select" tags event Pin
mani_iips27-Aug-07 0:18
mani_iips27-Aug-07 0:18 
QuestionHow To Change Chart Data Labels In Crystal Reports Pin
Moeez Ahmed26-Aug-07 22:33
Moeez Ahmed26-Aug-07 22:33 
AnswerRe: How To Change Chart Data Labels In Crystal Reports Pin
John-ph26-Aug-07 23:14
John-ph26-Aug-07 23:14 

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.