Hi Please how do i search from this date to that date with the textbox txtFrom.Text and txtTo.Text.
Here is what i have tried so far:
protected void BtnDate_Click(object sender, EventArgs e)
{
// PanelGridViewSal.Visible = true;
// lblMessage2.Visible = false;
if (txtFrom.Text == "")
{
ScriptManager.RegisterClientScriptBlock(btnSearch, this.GetType(), "alert", "<script>alert('Enter From Date ... !!')</script>", false);
}
else
{
// lblMessage2.Text = "";
if (txtDate.Text == "")
{
ScriptManager.RegisterClientScriptBlock(btnSearch, this.GetType(), "alert", "<script>alert('Enter Date ... !!')</script>", false);
}
else
{
}
}
} // lblMessag ...
Go to the complete details ...