Click here to Skip to main content
15,915,093 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.NET Pin
Sandeep Mewara21-Apr-13 19:14
mveSandeep Mewara21-Apr-13 19:14 
GeneralRe: ASP.NET Pin
Sugu Thomas22-Apr-13 5:18
professionalSugu Thomas22-Apr-13 5:18 
Questionhelp help help T_T create for loop Pin
Michael†Cheong21-Apr-13 8:42
Michael†Cheong21-Apr-13 8:42 
for my page i have 88 CheckBox when the page is load i want set the selected to false. so any one can help me create a for loop when page is load all the checkbox set to false by using
XML
<asp:CheckBox ID="CheckBoxXS" runat="server"   Text=" XS" onClick="forXS(this)" class="checkboxS" OnCheckedChanged="CheckBoxXS1_CheckedChanged"/>


function forXS(sender) {
var tb1 = document.getElementById('<%= txtXS.ClientID %>');

tb1.style.display = sender.checked ? 'inline' : 'none';
if (tb1 != null) {
tb1.focus();
ValidatorEnable(document.getElementById('<%= val1.ClientID %>'), sender.checked);
}
}

________________________________________________
can use Java Script fumction for this and call on page load as below: but i dont know how to place inside my script
function UncheckAll(){
var w = document.getElementsByTagName('input');
for(var i = 0; i < w.length; i++){
if(w[i].type=='checkbox'){
w[i].checked = false;
}
}
}
AnswerRe: help help help T_T create for loop Pin
Jasmine250122-Apr-13 9:18
Jasmine250122-Apr-13 9:18 
GeneralRe: help help help T_T create for loop Pin
Michael†Cheong22-Apr-13 19:45
Michael†Cheong22-Apr-13 19:45 
QuestionHOW TO DEPLOY or PUBLISH CRYSTAL REPORT TO WEB SERVER IN VISUAL STUDIO 2010 Pin
JYOTIRMOY SAMANTA21-Apr-13 6:55
JYOTIRMOY SAMANTA21-Apr-13 6:55 
AnswerRe: HOW TO DEPLOY or PUBLISH CRYSTAL REPORT TO WEB SERVER IN VISUAL STUDIO 2010 Pin
Sandeep Mewara21-Apr-13 19:18
mveSandeep Mewara21-Apr-13 19:18 
GeneralRe: HOW TO DEPLOY or PUBLISH CRYSTAL REPORT TO WEB SERVER IN VISUAL STUDIO 2010 Pin
JYOTIRMOY SAMANTA21-Apr-13 21:39
JYOTIRMOY SAMANTA21-Apr-13 21:39 
QuestionDataBase Problem @@ Pin
Michael†Cheong21-Apr-13 5:29
Michael†Cheong21-Apr-13 5:29 
AnswerRe: DataBase Problem @@ Pin
Sandeep Mewara21-Apr-13 6:11
mveSandeep Mewara21-Apr-13 6:11 
GeneralRe: DataBase Problem @@ Pin
Michael†Cheong21-Apr-13 6:22
Michael†Cheong21-Apr-13 6:22 
AnswerRe: DataBase Problem @@ Pin
PIEBALDconsult21-Apr-13 6:29
mvePIEBALDconsult21-Apr-13 6:29 
GeneralRe: DataBase Problem @@ Pin
Michael†Cheong21-Apr-13 6:36
Michael†Cheong21-Apr-13 6:36 
GeneralRe: DataBase Problem @@ Pin
PIEBALDconsult21-Apr-13 7:19
mvePIEBALDconsult21-Apr-13 7:19 
GeneralRe: DataBase Problem @@ Pin
Jasmine250122-Apr-13 9:21
Jasmine250122-Apr-13 9:21 
AnswerRe: DataBase Problem @@ Pin
Aner Bautista22-Apr-13 8:07
Aner Bautista22-Apr-13 8:07 
Questionasp.net. webPages, webForms, MVC, ... oh my god Pin
Frygreen20-Apr-13 9:34
Frygreen20-Apr-13 9:34 
AnswerRe: asp.net. webPages, webForms, MVC, ... oh my god Pin
Sandeep Mewara20-Apr-13 23:26
mveSandeep Mewara20-Apr-13 23:26 
AnswerRe: asp.net. webPages, webForms, MVC, ... oh my god Pin
Richard MacCutchan20-Apr-13 23:38
mveRichard MacCutchan20-Apr-13 23:38 
GeneralRe: asp.net. webPages, webForms, MVC, ... oh my god Pin
Frygreen26-Apr-13 7:45
Frygreen26-Apr-13 7:45 
Questionhow to create YES/NO buttons in a popup? Pin
Qadri Jillani19-Apr-13 20:57
Qadri Jillani19-Apr-13 20:57 
AnswerRe: how to create YES/NO buttons in a popup? Pin
Abhishek Sur20-Apr-13 1:37
professionalAbhishek Sur20-Apr-13 1:37 
Questionsetup file Pin
Ashwini kumbhar19-Apr-13 19:31
Ashwini kumbhar19-Apr-13 19:31 
AnswerRe: setup file Pin
Karthik Harve19-Apr-13 19:56
professionalKarthik Harve19-Apr-13 19:56 
Questionjavascript __dopostback System.NullReferenceException Pin
jojoba201119-Apr-13 18:36
jojoba201119-Apr-13 18:36 

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.