JustPaste
HomeCategoriesAboutDonateContactTerms of UsePrivacy Policy
JustPaste

Free online notepad — write and share instantly

Navigate

  • Home
  • Timeline
  • Categories

Info

  • About
  • Donate
  • Contact

Legal

  • Terms of Use
  • Privacy Policy

© 2026 JustPaste.app. All rights reserved.

Made with ♥ by JustPaste

Untitled Page | JustPaste.app
about 1 month ago1 views
👨‍💻Programming
using System;
using System.Web.UI;

namespace RegistracijaApp
{
    public partial class _Default : Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            if (Page.IsValid)
            {
                lblStatus.Text =
                    "Успешна регистрација за корисника: " + txtUsername.Text;

                lblStatus.CssClass = "status-ok";

                // clear fields
                txtUsername.Text = "";
                txtPass.Text = "";
                txtPassConfirm.Text = "";
                txtEmail.Text = "";
                txtAge.Text = "";
            }
            else
            {
                lblStatus.Text = "Подаци нису исправни!";
                lblStatus.ForeColor = System.Drawing.Color.Red;
            }
        }
    }
}
← Back to timeline