Listing the source code file InfoAuthor.aspx.cs
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using PxControls;
using PxFiles;
using System.Globalization;
public partial class InfoAuthor : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
//rutina na vypnutie BackButonu v Browsery
this.Context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
this.Context.Response.Cache.SetAllowResponseInBrowserHistory(false);
if (Request.Browser.MSDomVersion.Major == 0) // Non IE Browser?)
this.Context.Response.Cache.SetNoStore();
PxCulture.CurrentCulture = new CultureInfo("en-US");
if (/*(!IsPostBack)&&*/(wquAuthor.Active==false))
{
wquAuthor.ConnectString = AppConst.ConnectString;
wquAuthor.SQLSelect = "select IdAuthor, First_Name, Last_Name, Notice from Author";
wquAuthor.Open();
wquAuthor.AutomaticRefresh = true;
wquAuthor.IntervalQueryRefresh = 30;
wquAuthor.Columns["IdAuthor"].Caption = "Id Author";
wquAuthor.Columns["First_Name"].Caption = "Name";
wquAuthor.Columns["Last_Name"].Caption = "Surname";
wquAuthor.Columns["Notice"].Caption = "Notice";
}
else
{
}
lblIdAuthor.PxDataSource = wquAuthor;
lblIdAuthor.FieldName = wquAuthor.Columns["IdAuthor"].ToString();
lblFirst_Name.PxDataSource = wquAuthor;
lblFirst_Name.FieldName = wquAuthor.Columns["First_Name"].ToString();
lblLast_Name.PxDataSource = wquAuthor;
lblLast_Name.FieldName = wquAuthor.Columns["Last_Name"].ToString();
lblNotice.PxDataSource = wquAuthor;
lblNotice.FieldName = wquAuthor.Columns["Notice"].ToString();
}
protected void ButtonClose_Click(object sender, EventArgs e)
{
this.Response.Redirect("~/Author.aspx");
}
}
Return to original page