I've got:
return RedirectToAction("ManageCampaigns", new { campaignID = Model.LeadSalesCampaignID });
Which works fine. It sends the user to ManageCampaigns?campaignID=1
. But now, I want to send the user to:
ManageCampaigns?campaignID=1#divID
What would the syntax be to make this happen?