Hey guys,
I have developed web application & deployed on IIS.I browse my application through virtual directory it opens . there are some html controls (html input button ,text box etc) on web form when i click on control (html input type button) it navigates to another page but does not show any output.Here i m giving code.I m calling some method "CriticalPathMethod" from some class .I show output of CriticalPathMethod on CPMReport.aspx page.It goes on CPMReport.aspx page but does not show any output on that.
What should i do? Plz Help me.
protected void ButtonCPM_ServerClick(object sender, EventArgs e)
{
ProjectList t_ProjectListObj = (ProjectList)Application["t_ProjectListObj"];
ResourceList t_ResourceListObj = (ResourceList)Application["t_ResourceListObj"];
string t_ScheduleStatus = "";
string t_PrjSting = "LoadProject";
LabelStatus.Text = "";
t_ScheduleStatus = t_ProjectListObj.CriticalPathMethod("",m_ProjectName);
if (t_ScheduleStatus.StartsWith("ERR:"))
LabelStatus.Text += t_ScheduleStatus;
else
{
Session["t_ModelID"] = m_ModelID;
Session["t_ProjectString"] = t_PrjSting;
Response.Redirect("CPMReport.aspx",false);
}
}
Thanks in advance.