The page from where u wish to go to the page where wizard is located , do this :
Response.Redirect("TargetPage.aspx?StepNo=2");
then at targetPage.aspx , page_load event do this :
var step = HttpUtility.UrlDecode(Request.QueryString["StepNo"]);
YourWizardName.ActiveStepIndex = int.Parse(step);