Click here to Skip to main content
15,886,110 members

Comments by netfed (Top 5 by date)

netfed 31-May-17 23:32pm View    
Aha! Didn't see that. I have updated my profile. But stil, it is quite possible I become a student once more in my lifetime :-)
netfed 30-May-17 23:34pm View    
Well, there you go :-) And to all the others who are reading this; it's a fine update
netfed 1-Jun-14 2:15am View    
Whenever you select some value in another Control on the page, you can always update the datagrid with the data from a new query that will populate the datagrid. Just Clear all rows from the datagrid and do another databinding for it.
netfed 9-Mar-14 22:54pm View    
Deleted
I will start with this:
using System.Reflection;

`SqlParameterCollection paramcollection = (SqlParameterCollection)typeof(SqlParameterCollection).GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance, null, Type.EmptyTypes, null).Invoke(null);

paramcollection.AddWithValue("@member", member);
`

netfed 25-Aug-13 9:38am View    
What do you mine by Line (Lets say that line 4 contains the value of item 3). What is a Line in this context?