Click here to Skip to main content
15,916,378 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: click event in datagrid Pin
N a v a n e e t h12-Nov-07 21:56
N a v a n e e t h12-Nov-07 21:56 
AnswerRe: Bind a grid with string Pin
Michael Sync12-Nov-07 22:23
Michael Sync12-Nov-07 22:23 
GeneralRe: Bind a grid with string Pin
Michael Sync12-Nov-07 22:25
Michael Sync12-Nov-07 22:25 
GeneralBind a grid with string Pin
SreejithAchutan12-Nov-07 22:46
SreejithAchutan12-Nov-07 22:46 
QuestionHow to call a web user control through C#? Pin
Affan Toor12-Nov-07 20:48
Affan Toor12-Nov-07 20:48 
AnswerRe: How to call a web user control through C#? Pin
Christian Graus12-Nov-07 21:03
protectorChristian Graus12-Nov-07 21:03 
GeneralRe: How to call a web user control through C#? Pin
Affan Toor12-Nov-07 22:11
Affan Toor12-Nov-07 22:11 
GeneralRe: How to call a web user control through C#? Pin
Christian Graus12-Nov-07 22:37
protectorChristian Graus12-Nov-07 22:37 
GeneralRe: How to call a web user control through C#? Pin
Affan Toor12-Nov-07 23:08
Affan Toor12-Nov-07 23:08 
Questionobject reference not set to an instance of object Pin
Member 387988112-Nov-07 20:47
Member 387988112-Nov-07 20:47 
AnswerRe: object reference not set to an instance of object Pin
Prateek G12-Nov-07 20:54
Prateek G12-Nov-07 20:54 
GeneralRe: object reference not set to an instance of object Pin
Member 387988112-Nov-07 22:40
Member 387988112-Nov-07 22:40 
AnswerRe: object reference not set to an instance of object Pin
Christian Graus12-Nov-07 21:02
protectorChristian Graus12-Nov-07 21:02 
GeneralRe: object reference not set to an instance of object Pin
Member 387988112-Nov-07 22:46
Member 387988112-Nov-07 22:46 
Questionhow build the menu using the database fields Pin
findtango12-Nov-07 20:34
findtango12-Nov-07 20:34 
Questionneed to detect the requesting machine (Mobile or a normal computer) Pin
Rocky#12-Nov-07 20:32
Rocky#12-Nov-07 20:32 
AnswerRe: need to detect the requesting machine (Mobile or a normal computer) Pin
N a v a n e e t h12-Nov-07 21:54
N a v a n e e t h12-Nov-07 21:54 
GeneralRe: need to detect the requesting machine (Mobile or a normal computer) Pin
Rocky#12-Nov-07 22:25
Rocky#12-Nov-07 22:25 
GeneralRe: need to detect the requesting machine (Mobile or a normal computer) Pin
N a v a n e e t h12-Nov-07 22:36
N a v a n e e t h12-Nov-07 22:36 
GeneralRe: need to detect the requesting machine (Mobile or a normal computer) Pin
Rocky#13-Nov-07 1:04
Rocky#13-Nov-07 1:04 
QuestionSystem.Security.Cryptography.CryptographicException:Length of the data to decrypt is invalid.. Pin
attalurisubbu12-Nov-07 20:29
attalurisubbu12-Nov-07 20:29 
Questionhow to use data grid in asp.net Pin
ps.srinivasan12-Nov-07 20:18
ps.srinivasan12-Nov-07 20:18 
AnswerRe: how to use data grid in asp.net Pin
Michael Sync12-Nov-07 20:24
Michael Sync12-Nov-07 20:24 
GeneralRe: how to use data grid in asp.net Pin
ps.srinivasan12-Nov-07 20:32
ps.srinivasan12-Nov-07 20:32 
GeneralRe: how to use data grid in asp.net Pin
N a v a n e e t h12-Nov-07 21:40
N a v a n e e t h12-Nov-07 21:40 
DataGrid will be rendered as HTML table. On ItemDatbound event, get the cell text and make a call to a javascript function on the OnClick event of the cell.

e.Item.Cells[0].Text = "<a onclick="YourJsFunction('" + e.Item.Cells[0].Text
+ "')>" + e.Item.Cells[0].Text + "</a>
above code will set the OnClick event for first cell. Cell value will be passed as parameter to the JS function which can be assigned to text box.

Hope it helps

All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia

My Website | Ask smart questions

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.