N
Nissim
i wrote the code below in global.asax:
protected void Application_Start
(Object sender, EventArgs e)
{
m_Adapter.SelectCommand = m_CityCmd;
m_Adapter.Fill(m_DataSet,"Cities");
Application["DS"] = m_DataSet;
}
but that event never raised, or maybe its raised but the
method never run, why?
Thanks
protected void Application_Start
(Object sender, EventArgs e)
{
m_Adapter.SelectCommand = m_CityCmd;
m_Adapter.Fill(m_DataSet,"Cities");
Application["DS"] = m_DataSet;
}
but that event never raised, or maybe its raised but the
method never run, why?
Thanks