I have the aspx page ready. Can I call elements from it into the aspx.cs from the same? It's like this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
namespace SOSis
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
And I have a label in the Aspx named StatusLineEditCadas that I want to change it's text in there. Is it able?
How do I do that? How do I call it?
Thanks!
...
Go to the complete details ...