Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #31.8K
Ranked #2K
~2K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for yamini222

Hi, because you haven't mentioned how to add value to the Gridview I might not be able to help you too much. However the best way to filter the gridview is to use Dataview to filter the top values then add the filtered values to the gridview, this can be …

Member Avatar for kjward
0
125
Member Avatar for WolfShield

Hi, database can be very useful for sorting data but it has limitions especially for saving a large amount of data at once. Therefore, before thinking about database its a good idea to check how much space do you need, what type of data you want to store and how …

Member Avatar for WolfShield
0
212
Member Avatar for Arjun_Sarankulu

Look at the following link for Nullable datetime in c# [url]http://www.dotnetperls.com/nullable-datetime[/url]

Member Avatar for Knvn
0
198
Member Avatar for Behseini

hi, for one of my applications I have implemented something like this [code] string constr = "User Id=scott;Password=tiger;Data Source=oracle"; OracleConnection con = new OracleConnection(constr); public DbCommand CreateCommand () { con.Open(); DbCommand comm = con.CreateCommand(); comm.CommandType = CommandType.Text; return comm; } DbCommand comm = CreateCommand(); comm.CommandText = "select ename, empno from …

Member Avatar for Alan81
0
1K
Member Avatar for Armanious

Hi, try the following code hope it helps [code] protected void Page_Load(object sender, EventArgs e) { Send("receiver@host.com", "Test Email", "Hello", false); } public void Send(string _to, string _subject, string _body, bool isHtml) { MailMessage mm = new MailMessage(); mm.From = new MailAddress("mygmailacc@gmail.com"); mm.To.Add(new MailAddress(_to)); mm.Subject = _subject; mm.Body = _body; …

Member Avatar for Armanious
0
226
Member Avatar for Suzie999

Hi, Use \s for whitespace: using System; using System.Text.RegularExpressions; namespace RegularExpression { class Program { public static bool ValidateText(string regex, string text) { // Create a new Regex based on the specified regular expression. Regex r = new Regex(regex); // Test if the specified text matches the regular expression. return …

Member Avatar for Suzie999
0
120

The End.