Hi I have written this code and it is throwing error stating that "The name 'broker' does not exist in the current context" :
if (MyProposal.AonSite == "NONAON")
{
if (
broker.OrganisationShortDescription.ToLower().Contains("calliden"))
{
p.AddPDFSection(strXml, Server.MapPath(versionPath + "Policy.xsl"), false);
}
else
{
p.AddPDFSection(strXml, Server.MapPath(versionPath + "Policy_Ace.xsl"), false);
}
}
Durga