Click here to Skip to main content
15,927,699 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: set the image pixel as password Pin
jaraldumary19-Dec-08 19:18
jaraldumary19-Dec-08 19:18 
GeneralRe: set the image pixel as password Pin
N a v a n e e t h19-Dec-08 19:21
N a v a n e e t h19-Dec-08 19:21 
GeneralRe: set the image pixel as password Pin
jaraldumary19-Dec-08 19:31
jaraldumary19-Dec-08 19:31 
GeneralRe: set the image pixel as password Pin
Christian Graus19-Dec-08 19:29
protectorChristian Graus19-Dec-08 19:29 
Questionhow to check a check box in the click event of a textbox in a grid view Pin
souravghosh1819-Dec-08 18:37
souravghosh1819-Dec-08 18:37 
AnswerRe: how to check a check box in the click event of a textbox in a grid view Pin
Christian Graus19-Dec-08 18:55
protectorChristian Graus19-Dec-08 18:55 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
souravghosh1819-Dec-08 19:02
souravghosh1819-Dec-08 19:02 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
Christian Graus19-Dec-08 19:05
protectorChristian Graus19-Dec-08 19:05 
Nishant's idea is a good one. If you can make it so that the click event calls a js method and accepts the client side id of the checkbox, that would be ideal. Then it's just something like

function checkit(id)
{
var check = document.getElementById(id);
if (check)
check.Checked = true;
}

Something like that. you make need to do something fancy in the onitemdatabound event to get the ClientID property of your checkbox tho.

Christian Graus

Driven to the arms of OSX by Vista.

GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
souravghosh1819-Dec-08 19:10
souravghosh1819-Dec-08 19:10 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
N a v a n e e t h19-Dec-08 19:26
N a v a n e e t h19-Dec-08 19:26 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
Christian Graus19-Dec-08 19:34
protectorChristian Graus19-Dec-08 19:34 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
N a v a n e e t h19-Dec-08 19:41
N a v a n e e t h19-Dec-08 19:41 
AnswerRe: how to check a check box in the click event of a textbox in a grid view Pin
Nishant Singh19-Dec-08 18:57
Nishant Singh19-Dec-08 18:57 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
souravghosh1819-Dec-08 19:05
souravghosh1819-Dec-08 19:05 
GeneralRe: how to check a check box in the click event of a textbox in a grid view Pin
Nishant Singh19-Dec-08 19:26
Nishant Singh19-Dec-08 19:26 
QuestionHow to fetch the date using calendar control??? Pin
janani1319-Dec-08 18:07
janani1319-Dec-08 18:07 
AnswerRe: How to fetch the date using calendar control??? Pin
Christian Graus19-Dec-08 18:08
protectorChristian Graus19-Dec-08 18:08 
GeneralRe: How to fetch the date using calendar control??? Pin
janani1319-Dec-08 18:14
janani1319-Dec-08 18:14 
GeneralRe: How to fetch the date using calendar control??? Pin
Christian Graus19-Dec-08 18:17
protectorChristian Graus19-Dec-08 18:17 
GeneralRe: How to fetch the date using calendar control??? Pin
janani1319-Dec-08 18:19
janani1319-Dec-08 18:19 
QuestionWhat is the best approach to generate random Password for user in asp.net 2.0 Pin
Rameez Raja19-Dec-08 17:26
Rameez Raja19-Dec-08 17:26 
AnswerRe: What is the best approach to generate random Password for user in asp.net 2.0 Pin
Christian Graus19-Dec-08 17:48
protectorChristian Graus19-Dec-08 17:48 
GeneralRe: What is the best approach to generate random Password for user in asp.net 2.0 Pin
Rameez Raja19-Dec-08 18:27
Rameez Raja19-Dec-08 18:27 
GeneralRe: What is the best approach to generate random Password for user in asp.net 2.0 Pin
Christian Graus19-Dec-08 18:54
protectorChristian Graus19-Dec-08 18:54 
AnswerRe: What is the best approach to generate random Password for user in asp.net 2.0 Pin
knbinoj5819-Dec-08 23:29
knbinoj5819-Dec-08 23:29 

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.