Click here to Skip to main content
15,906,558 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to prevent running javascript code from address bar Pin
badgrs18-Jun-07 3:44
badgrs18-Jun-07 3:44 
GeneralRe: How to prevent running javascript code from address bar Pin
Ahmad Safwat18-Jun-07 4:36
Ahmad Safwat18-Jun-07 4:36 
Questionweb part creation error Pin
Viral Upadhyay17-Jun-07 21:52
Viral Upadhyay17-Jun-07 21:52 
Question[Message Deleted] Pin
Prakash_Mishra17-Jun-07 21:22
Prakash_Mishra17-Jun-07 21:22 
AnswerRe: how to display the database table values in the form Pin
Sathesh Sakthivel17-Jun-07 21:47
Sathesh Sakthivel17-Jun-07 21:47 
AnswerRe: how to display the database table values in the form Pin
N a v a n e e t h17-Jun-07 23:12
N a v a n e e t h17-Jun-07 23:12 
QuestionTo insert values from a gridview to textboxes in web page Pin
codingrocks17-Jun-07 21:20
codingrocks17-Jun-07 21:20 
AnswerRe: To insert values from a gridview to textboxes in web page Pin
Sreekumar P P17-Jun-07 23:37
Sreekumar P P17-Jun-07 23:37 
1. You can use DataGrid's ItemDataBound event for this.

At any point you can have the exact cell value by --> e.Item.Cells[x].Text

--------------------------------------------------------------

2. You can also have mouseover or mouse-click events for a DataGrid Row.

if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
{
if (e.Item.ItemType == ListItemType.Item)
{
e.Item.Attributes.Add("onmouseover", "JavaScriptFunctionName();");
e.Item.Attributes.Add("onmouseout", "JavaScriptFunctionName();");
}
if (e.Item.ItemType == ListItemType.AlternatingItem)
{
e.Item.Attributes.Add("onmouseover", "JavaScriptFunctionName();");
e.Item.Attributes.Add("onmouseout", "JavaScriptFunctionName();");
}
}
GeneralRe: To insert values from a gridview to textboxes in web page Pin
codingrocks18-Jun-07 0:25
codingrocks18-Jun-07 0:25 
Questionhow to add textbox to a table at runtime and send textbox's value to database Pin
sanchet17-Jun-07 21:13
sanchet17-Jun-07 21:13 
AnswerRe: how to add textbox to a table at runtime and send textbox's value to database Pin
Sandeep Akhare17-Jun-07 21:18
Sandeep Akhare17-Jun-07 21:18 
AnswerRe: how to add textbox to a table at runtime and send textbox's value to database Pin
Sreekumar P P18-Jun-07 0:14
Sreekumar P P18-Jun-07 0:14 
GeneralRe: how to add textbox to a table at runtime and send textbox's value to database Pin
sanchet18-Jun-07 20:18
sanchet18-Jun-07 20:18 
QuestionWeb 1.0 and Web 2.0 Pin
N a v a n e e t h17-Jun-07 21:03
N a v a n e e t h17-Jun-07 21:03 
AnswerRe: Web 1.0 and Web 2.0 Pin
Sathesh Sakthivel17-Jun-07 21:15
Sathesh Sakthivel17-Jun-07 21:15 
JokeRe: Web 1.0 and Web 2.0 Pin
Sandeep Akhare17-Jun-07 21:19
Sandeep Akhare17-Jun-07 21:19 
GeneralRe: Web 1.0 and Web 2.0 Pin
Sathesh Sakthivel17-Jun-07 21:23
Sathesh Sakthivel17-Jun-07 21:23 
GeneralRe: Web 1.0 and Web 2.0 Pin
N a v a n e e t h17-Jun-07 21:21
N a v a n e e t h17-Jun-07 21:21 
GeneralRe: Web 1.0 and Web 2.0 Pin
Sathesh Sakthivel17-Jun-07 21:24
Sathesh Sakthivel17-Jun-07 21:24 
GeneralRe: Web 1.0 and Web 2.0 Pin
Sandeep Akhare17-Jun-07 21:29
Sandeep Akhare17-Jun-07 21:29 
JokeRe: Web 1.0 and Web 2.0 Pin
N a v a n e e t h17-Jun-07 22:40
N a v a n e e t h17-Jun-07 22:40 
Questiondisplaying the tables in a asp.net form Pin
Prakash_Mishra17-Jun-07 21:02
Prakash_Mishra17-Jun-07 21:02 
AnswerRe: displaying the tables in a asp.net form Pin
N a v a n e e t h17-Jun-07 21:05
N a v a n e e t h17-Jun-07 21:05 
GeneralRe: displaying the tables in a asp.net form Pin
Prakash_Mishra17-Jun-07 21:08
Prakash_Mishra17-Jun-07 21:08 
GeneralRe: displaying the tables in a asp.net form Pin
codingrocks17-Jun-07 21:23
codingrocks17-Jun-07 21:23 

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.