Click here to Skip to main content
15,891,529 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: MCTS Certifictaion Pin
muralishift16-Sep-09 21:47
muralishift16-Sep-09 21:47 
AnswerRe: MCTS Certifictaion Pin
koolbuddy4u2000421-Jan-09 9:04
koolbuddy4u2000421-Jan-09 9:04 
GeneralRe: MCTS Certifictaion Pin
koolbuddy4u2000421-Jan-09 9:39
koolbuddy4u2000421-Jan-09 9:39 
AnswerRe: MCTS Certifictaion Pin
Sathesh Sakthivel6-Sep-07 23:44
Sathesh Sakthivel6-Sep-07 23:44 
Questionfileupload control Pin
Nidhiii6-Sep-07 21:08
Nidhiii6-Sep-07 21:08 
AnswerRe: fileupload control Pin
Sandeep Akhare6-Sep-07 23:01
Sandeep Akhare6-Sep-07 23:01 
AnswerRe: fileupload control Pin
S A R I T H6-Sep-07 23:19
S A R I T H6-Sep-07 23:19 
Questiongridview + Asp.net 2.0 + c# Pin
ritu43216-Sep-07 20:55
ritu43216-Sep-07 20:55 
i have a delete button and a gridview in which the first column is a checkbox .
the checkboxes are checked and then when delete button is pressed a confirm box comes Are you sure you want to delete.on cancel of it i want to uncheck the checkboxes through javascripting . How to do this. How to get the individual checkboxes id.

here is want i have done but could not get it.

function CheckUser(gvView)
{
debugger
var usergid = document.getElementById(gvView);

var len = usergid.rows.length;

if(checked)
{
var conf = confirm(" Are you sure to delete 'User(s)'");

if(conf)
{
return true;
}
else
{
var usergid = document.getElementById(gvView);
checked=false;
n=1;
for(k=1;k<=Count+1;k++)
{
n=n+1;
var ChkDel = gvView+'_'+'ctl0'+n+'_'+'chkDelete';
if(n>=10)
{
ChkDel =gvView+'_'+'ctl'+n+'_'+'chkDelete';
}
var checkbox=document.getElementById(ChkDel)
if(checkbox!=null)
{
if(checkbox.checked)
{
checked=false;
}
}
}
return false;
}
}
else
{
alert("Please select atleast one 'User'");

return false;
}

}
AnswerRe: gridview + Asp.net 2.0 + c# Pin
varshavmane6-Sep-07 21:09
varshavmane6-Sep-07 21:09 
AnswerRe: gridview + Asp.net 2.0 + c# Pin
VenkataRamana.Gali6-Sep-07 21:25
VenkataRamana.Gali6-Sep-07 21:25 
Questiondisplay xml file into datagrid Pin
darkday6-Sep-07 20:53
darkday6-Sep-07 20:53 
AnswerRe: display xml file into datagrid Pin
varshavmane6-Sep-07 21:04
varshavmane6-Sep-07 21:04 
GeneralRe: display xml file into datagrid Pin
darkday10-Sep-07 2:34
darkday10-Sep-07 2:34 
GeneralRe: display xml file into datagrid Pin
varshavmane10-Sep-07 3:09
varshavmane10-Sep-07 3:09 
QuestionRegarding Active reports Pin
aditya_asv6-Sep-07 20:51
aditya_asv6-Sep-07 20:51 
QuestionHow to add new row dynamic into dataset Pin
indiaone6-Sep-07 20:50
indiaone6-Sep-07 20:50 
AnswerRe: How to add new row dynamic into dataset Pin
VenkataRamana.Gali6-Sep-07 21:04
VenkataRamana.Gali6-Sep-07 21:04 
GeneralRe: How to add new row dynamic into dataset Pin
indiaone6-Sep-07 21:21
indiaone6-Sep-07 21:21 
Questionforms authentication Pin
saiprasada6-Sep-07 20:50
saiprasada6-Sep-07 20:50 
AnswerRe: forms authentication Pin
VenkataRamana.Gali6-Sep-07 21:06
VenkataRamana.Gali6-Sep-07 21:06 
GeneralRe: forms authentication Pin
saiprasada6-Sep-07 21:23
saiprasada6-Sep-07 21:23 
QuestionObject moved error - Urgent Pin
NK76-Sep-07 20:41
NK76-Sep-07 20:41 
QuestionClass inherting User Control and implementing ITemplate Pin
tsramkumar6-Sep-07 20:40
tsramkumar6-Sep-07 20:40 
QuestionCheckbox and FileUpload control query Pin
Shaurya_Rastogi6-Sep-07 20:39
Shaurya_Rastogi6-Sep-07 20:39 
QuestionHow to handle Multiple Asynchronous Requests at one time? Pin
IshfaqHussain6-Sep-07 20:04
IshfaqHussain6-Sep-07 20:04 

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.