- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
6 Posted Topics
Re: 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 … | |
Re: 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 … | |
Re: Look at the following link for Nullable datetime in c# [url]http://www.dotnetperls.com/nullable-datetime[/url] | |
Re: 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 … | |
Re: 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; … | |
Re: 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 … |
The End.