Click here to Skip to main content
15,894,955 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
QuestionHow can i get template field control in GridView Pin
SunithaNallana12-Nov-07 20:18
SunithaNallana12-Nov-07 20:18 
AnswerRe: How can i get template field control in GridView Pin
Michael Sync12-Nov-07 20:21
Michael Sync12-Nov-07 20:21 
Code from this article..


// StringBuilder object<br />
StringBuilder str = new StringBuilder();<br />
<br />
// Select the checkboxes from the GridView control<br />
for (int i = 0; i < GridView1.Rows.Count; i++)<br />
{<br />
  GridViewRow row = GridView1.Rows[i];<br />
  bool isChecked = ((CheckBox) row.FindControl("chkSelect")).Checked;<br />
<br />
  if (isChecked)<br />
  {<br />
    // Column 2 is the name column<br />
    str.Append(GridView1.Rows[i].Cells[2].Text);<br />
  }<br />
}<br />


hope it helps..

Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

"Please vote to let me (and others) know if this answer helped you or not. A 5 vote tells people that your question has been answered successfully and that I've pitched it at just the right level. Thanks."

GeneralRe: How can i get template field control in GridView Pin
SunithaNallana12-Nov-07 20:55
SunithaNallana12-Nov-07 20:55 
QuestionBack Up Pin
JKChowdary12-Nov-07 20:12
JKChowdary12-Nov-07 20:12 
AnswerRe: Back Up Pin
Michael Sync12-Nov-07 20:17
Michael Sync12-Nov-07 20:17 
QuestionPassword Logic Pin
JKChowdary12-Nov-07 20:07
JKChowdary12-Nov-07 20:07 
AnswerRe: Password Logic Pin
N a v a n e e t h12-Nov-07 20:14
N a v a n e e t h12-Nov-07 20:14 
QuestionHow Can I Get path? Pin
Vanamaindia12-Nov-07 20:02
Vanamaindia12-Nov-07 20:02 
AnswerRe: How Can I Get path? Pin
N a v a n e e t h12-Nov-07 20:13
N a v a n e e t h12-Nov-07 20:13 
GeneralRe: How Can I Get path? Pin
Vanamaindia12-Nov-07 20:23
Vanamaindia12-Nov-07 20:23 
GeneralRe: How Can I Get path? Pin
Michael Sync12-Nov-07 20:30
Michael Sync12-Nov-07 20:30 
GeneralRe: How Can I Get path? Pin
N a v a n e e t h12-Nov-07 21:32
N a v a n e e t h12-Nov-07 21:32 
AnswerRe: How Can I Get path? Pin
lakshmichawala12-Nov-07 21:32
lakshmichawala12-Nov-07 21:32 
GeneralRe: How Can I Get path? Pin
N a v a n e e t h12-Nov-07 21:41
N a v a n e e t h12-Nov-07 21:41 
QuestionGoogle like Web Services Pin
wEb GuRu...12-Nov-07 20:01
wEb GuRu...12-Nov-07 20:01 
AnswerRe: Google like Web Services Pin
N a v a n e e t h12-Nov-07 20:12
N a v a n e e t h12-Nov-07 20:12 
QuestionGoogle like Web Services(URGENT) Pin
wEb GuRu...12-Nov-07 20:47
wEb GuRu...12-Nov-07 20:47 
AnswerRe: Google like Web Services(URGENT) Pin
N a v a n e e t h12-Nov-07 21:33
N a v a n e e t h12-Nov-07 21:33 
Questionautocomplete textbox Pin
kirthikirthi12-Nov-07 19:56
kirthikirthi12-Nov-07 19:56 

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.