Click here to Skip to main content
15,905,963 members
Home / Discussions / C#
   

C#

 
GeneralRe: Creating a word document Pin
Darren Sim11-Apr-07 22:09
Darren Sim11-Apr-07 22:09 
QuestionFtpWebRequest Response returns Html for ListDirectory Pin
aenon10-Apr-07 0:19
aenon10-Apr-07 0:19 
AnswerRe: FtpWebRequest Response returns Html for ListDirectory Pin
Sathesh Sakthivel10-Apr-07 1:39
Sathesh Sakthivel10-Apr-07 1:39 
QuestionFtpWebRequest Response returns Html for ListDirectory Pin
aenon10-Apr-07 0:16
aenon10-Apr-07 0:16 
AnswerRe: FtpWebRequest Response returns Html for ListDirectory Pin
BrunoLopes23-Aug-10 18:11
BrunoLopes23-Aug-10 18:11 
QuestionCreate control between 2 form Pin
dinivian9-Apr-07 23:04
dinivian9-Apr-07 23:04 
AnswerRe: Create control between 2 form Pin
Martin#9-Apr-07 23:10
Martin#9-Apr-07 23:10 
GeneralRe: Create control between 2 form Pin
Test27030710-Apr-07 2:12
Test27030710-Apr-07 2:12 
GeneralRe: Create control between 2 form Pin
Martin#10-Apr-07 2:50
Martin#10-Apr-07 2:50 
QuestionSocket Programming Pin
SakthiSurya9-Apr-07 22:05
SakthiSurya9-Apr-07 22:05 
QuestionResourceManager add parameters Pin
Ollie19869-Apr-07 21:50
Ollie19869-Apr-07 21:50 
AnswerRe: ResourceManager add parameters Pin
lmoelleb9-Apr-07 23:51
lmoelleb9-Apr-07 23:51 
Questionfreezing rows in winform datagrid Pin
Anil Mahto9-Apr-07 21:42
professionalAnil Mahto9-Apr-07 21:42 
AnswerRe: freezing rows in winform datagrid Pin
il_masacratore11-Apr-07 21:35
il_masacratore11-Apr-07 21:35 
QuestionSaving Solution As 'othername' Pin
Ranger499-Apr-07 21:41
Ranger499-Apr-07 21:41 
AnswerRe: Saving Solution As 'othername' Pin
Jaiprakash M Bankolli10-Apr-07 1:31
Jaiprakash M Bankolli10-Apr-07 1:31 
QuestionDataGridView CellValidation Pin
719-Apr-07 21:12
719-Apr-07 21:12 
AnswerRe: DataGridView CellValidation Pin
Vasudevan Deepak Kumar9-Apr-07 21:27
Vasudevan Deepak Kumar9-Apr-07 21:27 
GeneralRe: DataGridView CellValidation Pin
7110-Apr-07 2:28
7110-Apr-07 2:28 
AnswerRe: DataGridView CellValidation Pin
Jaiprakash M Bankolli10-Apr-07 1:33
Jaiprakash M Bankolli10-Apr-07 1:33 
GeneralRe: DataGridView CellValidation Pin
7110-Apr-07 2:28
7110-Apr-07 2:28 
GeneralRe: DataGridView CellValidation Pin
Jaiprakash M Bankolli10-Apr-07 2:53
Jaiprakash M Bankolli10-Apr-07 2:53 
for example you want to associate onKeyPress with some xyz javascript.

Now this can be done in data bound event for each column. now all the columns are accessed as collection of item. You associate this with xyz javascript example is as follows:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onKeyPress", "xyz()");

}
}


Hope this helps

Regards,
Jaiprakash M Bankolli
jaiprakash.bankolli@gmail.com
http://jaiprakash.blog.com/

AnswerRe: DataGridView CellValidation Pin
Jaiprakash M Bankolli10-Apr-07 23:32
Jaiprakash M Bankolli10-Apr-07 23:32 
Questionhow to read Edit, delete records from Datagrid control [modified] Pin
Sanjib Raj9-Apr-07 20:43
Sanjib Raj9-Apr-07 20:43 
AnswerRe: how to read Edit, delete records from Datagrid control Pin
Tamimi - Code9-Apr-07 21:01
Tamimi - Code9-Apr-07 21:01 

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.