Files
C2P/C2P/Quote.aspx.cs
T
2014-02-25 09:00:50 +01:00

44 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace C2P
{
public partial class Quote : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
mod_newQuote1.eh_newSearchData += mod_newQuote1_eh_newSearchData;
mod_newQuote1.eh_newQuote += mod_newQuote1_eh_newQuote;
mod_newQuote1.eh_reset += mod_newQuote1_eh_reset;
mod_QuoteList1.eh_loadReq += mod_QuoteList1_eh_loadReq;
}
void mod_newQuote1_eh_reset(object sender, EventArgs e)
{
mod_QuoteList1.reset();
}
/// <summary>
/// richeista load dati dell'offerta...
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void mod_QuoteList1_eh_loadReq(object sender, EventArgs e)
{
mod_newQuote1.loadSelData();
}
void mod_newQuote1_eh_newQuote(object sender, EventArgs e)
{
mod_QuoteList1.doUpdate();
}
void mod_newQuote1_eh_newSearchData(object sender, EventArgs e)
{
mod_QuoteList1.doUpdate();
}
}
}