Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.3K
~769 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

4 Posted Topics

Member Avatar for kevinlin

using (StreamReader sr = new StreamReader("TestFile.txt")) { string line; while ((line = sr.ReadLine()) != null) { if (line.Substring(0,4) == "$GSV") { Textbox1.Test = line. } } }

Member Avatar for Diamonddrake
0
140
Member Avatar for zguidon
Member Avatar for raphaelsolis
Member Avatar for Dabuskol
0
122
Member Avatar for kethare

[B][U]ASPX.CS[/U][/B] [COLOR="Green"]private void GridView_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { if ((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem)) { e.Item.Attributes.Add("onMouseOver", "SetNewColor(this);"); e.Item.Attributes.Add("onMouseOut", "SetOldColor(this);"); } }[/COLOR] [B][U]ASPX[/U][/B] <script language="javascript"> function SetNewColor(source) { _oldColor = source.style.backgroundColor; source.style.backgroundColor = '#FFCCCC';//#FFCCCC'; source.style.cursor='hand'; } function SetOldColor(source) { source.style.backgroundColor = _oldColor; } </script> Hope this will help you …

Member Avatar for Dabuskol
0
82

The End.