Пример #1
0
        private void Validity(object sender, RoutedEventArgs e)
        {
            string email = Email.Text;

            Comment1.Foreground = Brushes.DarkGray;
            if (email != "example: [email protected]")
            {
                Comment1.Text = "Comments";
                Validation val    = new Validation();
                string     result = string.Empty;
                bool       ret    = val.Validate(email, ref result);
                Result.Content = result;
                if (result == "Valid Email")
                {
                    Result.Foreground = Brushes.Green;
                }
                DatabseConn dbcon = new DatabseConn();

                string result2 = string.Empty;
                string dat     = string.Empty;

                string comm = dbcon.Connection(email, ref result2, ref dat);

                if (!string.IsNullOrEmpty(result2))
                {
                    Result.Foreground = Brushes.Red;
                    Result.Content    = result2;
                }
                string newResult = string.Empty;

                if (!string.IsNullOrEmpty(comm))
                {
                    string[] com = comm.Split('^');

                    string[] dt = dat.Split('^');

                    for (int i = 0; i < com.Length; i++)
                    {
                        if (com[i] != "")
                        {
                            newResult = dt[i] + ": " + com[i] + "\n" + newResult;
                        }
                    }

                    string size = (com.Length - 1).ToString();
                    if (int.Parse(size) > 0)
                    {
                        CommentNo.Content = "Total Comments: " + size;
                    }
                    Comment1.Foreground = Brushes.Black;
                    Comment1.Text       = newResult;
                }
                else if (string.IsNullOrEmpty(comm))
                {
                    CommentNo.Content = "No Comments Available";
                }
            }
        }
Пример #2
0
        private void btn_Report(object sender, RoutedEventArgs e)
        {
            string email   = Email.Text;
            string comment = Comment.Text;

            if (comment == "Post Comment")
            {
                comment = "";
            }
            DatabseConn dbcon = new DatabseConn();

            dbcon.Report(email, comment);
        }