Click here to Skip to main content
15,912,207 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: inserting multiple rows at a time Pin
Sherin Iranimose21-May-07 2:24
Sherin Iranimose21-May-07 2:24 
GeneralRe: inserting multiple rows at a time Pin
yuvachandra21-May-07 3:29
yuvachandra21-May-07 3:29 
Questionhow to determine Session is Alive or not Pin
Bajrang Singh20-May-07 23:35
Bajrang Singh20-May-07 23:35 
AnswerRe: how to determine Session is Alive or not Pin
Guffa21-May-07 0:03
Guffa21-May-07 0:03 
AnswerRe: how to determine Session is Alive or not Pin
kapiljadhav21-May-07 4:18
kapiljadhav21-May-07 4:18 
GeneralRe: how to determine Session is Alive or not Pin
hammdo21-May-07 23:39
hammdo21-May-07 23:39 
Questionjavascript- to display the value of checkbox? Pin
Balaji.K20-May-07 23:32
Balaji.K20-May-07 23:32 
AnswerRe: javascript- to display the value of checkbox? Pin
Sandeep Akhare21-May-07 1:21
Sandeep Akhare21-May-07 1:21 
Make sure that all your checkbox have same name suppose "Sandeep"
<br />
(Assuming the checkbox are html control not Asp Control)<br />
<input type=CheckBox ID="First" value="127" name="Sandeep" onclick="CheckThis();" /><br />
                <input type=CheckBox ID="CheckBox9" value="126" name="Sandeep" onclick="CheckThis();" /><br />
                <input type=CheckBox ID="CheckBox10" value="103"  name="Sandeep" onclick="CheckThis();" /><br />
                <input type=CheckBox ID="CheckBox11" value="151" name="Sandeep" onclick="CheckThis();" /><br />
                <input type=CheckBox ID="CheckBox12" value="190" name="Sandeep" onclick="CheckThis();" /><br />
                <input type=CheckBox ID="CheckBox13" value="163" name="Sandeep" onclick="CheckThis();" /><br />
                <input type=CheckBox ID="CheckBox14" value="125" name="Sandeep" onclick="CheckThis();" /><br />

Now time to write javascript
<br />
  function CheckThis()<br />
    {<br />
    <br />
     alert('Sanaslfndsaf');<br />
    var object =document.getElementsByName("Sandeep");<br />
    for(var index=0;index<object.length;index++)<br />
    {<br />
        alert(" value"+object[index].value );<br />
       if(object[index].checked)<br />
        {<br />
            alert("this is checked ");<br />
        }<br />
    }<br />



Thanks and Regards
Sandeep

If If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "




GeneralRe: javascript- to display the value of checkbox? Pin
Balaji.K21-May-07 19:34
Balaji.K21-May-07 19:34 
Questionon right click on LinkButton if we chose to "Open in new tab/window " it doesn't work Pin
yogita charhate20-May-07 23:20
yogita charhate20-May-07 23:20 
AnswerRe: on right click on LinkButton if we chose to "Open in new tab/window " it doesn't work Pin
badgrs20-May-07 23:52
badgrs20-May-07 23:52 
QuestionCache not working Properly in ASP.NET 2.0 Pin
rsp702320-May-07 23:08
rsp702320-May-07 23:08 
AnswerRe: Cache not working Properly in ASP.NET 2.0 Pin
Sandeep Akhare21-May-07 0:24
Sandeep Akhare21-May-07 0:24 
GeneralRe: Cache not working Properly in ASP.NET 2.0 Pin
rsp702321-May-07 1:00
rsp702321-May-07 1:00 
Questiontab index in asp.net 2.0 Pin
aransiola20-May-07 23:02
aransiola20-May-07 23:02 
AnswerRe: tab index in asp.net 2.0 Pin
Harini N K20-May-07 23:18
Harini N K20-May-07 23:18 
Questionproblem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari20-May-07 22:08
pradeep kumarappagari20-May-07 22:08 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
wEb GuRu...20-May-07 22:31
wEb GuRu...20-May-07 22:31 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari21-May-07 1:58
pradeep kumarappagari21-May-07 1:58 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
Laxmikant Lad20-May-07 23:03
Laxmikant Lad20-May-07 23:03 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari21-May-07 1:56
pradeep kumarappagari21-May-07 1:56 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
kumarjammula21-May-07 0:13
kumarjammula21-May-07 0:13 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
Christian Graus21-May-07 1:40
protectorChristian Graus21-May-07 1:40 
GeneralRe: problem with browser back button...plz help me...its urgent Pin
pradeep kumarappagari21-May-07 1:57
pradeep kumarappagari21-May-07 1:57 
AnswerRe: problem with browser back button...plz help me...its urgent Pin
Sandeep Akhare21-May-07 1:39
Sandeep Akhare21-May-07 1:39 

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.