.cs ファイルのデータバインドからデータをリピーターに割り当てようとしています。私はしばらくの間、データバインディングに関して ASP と C# のゲームから離れており、基本を完全に忘れていました。
public partial class Project : System.Web.UI.Page {
IUnitOfWork unitofwork = new UnitOfWork();
IProjectRepository _projectRepo = null;
IProjectRepository Projects
{
get
{
if (_projectRepo == null)
_projectRepo = new ProjectRepository(unitofwork);
return _projectRepo;
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!Request.IsAuthenticated)
{
FormsAuthentication.RedirectToLoginPage();
}
var projectId = Convert.ToInt32(Request.QueryString["ProjectId"]);
var projectTask = Request.QueryString["ProjectStatus"];
if (!IsPostBack)
{
currentProject = Projects.GetByExpression(p => p.ID == projectId).FirstOrDefault();
currentProject = Projects.GetByExpression(p => p.Status == projectTask).FirstOrDefault();
}
データをリピーターに割り当てる最良の方法は何ですか。誰にとっても重要な情報である場合、リピーターは基本的なテーブル形式です。