protected void Page_Load(object sender, EventArgs e)
{
int count = (from st in psgDB.studyTbls where st.patientid_i == Convert.ToInt32(Request.QueryString["PatientId"]) && st.studystatusid_i == 1 select st).Count();
if (count == 0)
{
StudyInfoMultiView.ActiveViewIndex = 1;
}
else
{
StudyInfoMultiView.ActiveViewIndex = 2;
}
}
|