I can\'t seem to find an answer out there for this. Here\'s the scenario: I have an ASP.NET project using C#. I\'m loading data (Username, email, etc...) from a sqlite datab
In your ASP.NET page:
In your code behind (assuming you're using C#):
function Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { UserNameLabel.Text = "User Name"; } }