I have a method that returns bank values in my screen components. It receives as parameter 3 string
and 2 DateTime
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
this.Titulo1.SetaTitulo(Resources.Resource.titulo_cadVideo);
if (!string.IsNullOrEmpty(Request.QueryString["nIDMedia"]))
{
string nIDMedia = Request.QueryString["nIDMedia"];
Video.PreencheCampos(nIDMedia, txt_descricao.Text,
txt_endereco_link.Text, cl_inicio, cl_fim);
}
}
}
The problem is that I can not get the value of the date fields that are cl_inicio
and cl_fim
which are of type Calendar.