Exemplo n.º 1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         premiumservicesedit _premiumEdit = new premiumservicesedit();
         premiumserviceslisting _listing = new premiumserviceslisting();
         _listing = _premiumEdit.GetNewsViewsByArticle(Int32.Parse(Request.QueryString["id"].ToString()));
         txtheader.Text = _listing.ArticleTitle;
         isPaid.Checked = _listing.IsPaid;
         isActive.Checked = _listing.IsActive;
         fckcontent.Value = _listing.ArticleDesc;
         txtTicker.Text = _listing.Ticker;
     }
 }
Exemplo n.º 2
0
    /// <summary>
    /// 
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void btnsave_Click(object sender, EventArgs e)
    {
        bool _isPaid = false;

        if (isPaid.Checked)
            _isPaid = true;

        bool _isActive = false;

        if (isActive.Checked)
            _isActive = true;

        premiumservicesedit _newsviewsEdit = new premiumservicesedit(txtheader.Text, fckcontent.Value, DateTime.Now, _isActive, _isPaid, txtTicker.Text, TradingType.PENNYSTOCKS);
        _newsviewsEdit.UpdateNewsViews(Int32.Parse(Request.QueryString["id"].ToString()));
        Response.Redirect("pennystocklisting.aspx");
    }