Adf.Web.Process.WebViewProvider.ActivateView C# (CSharp) Method

ActivateView() public method

Activates a view i.e. opens a web page of an web application corresponding to the specified ITask.
public ActivateView ( ITask task ) : void
task ITask The , the corresponding web page /// of which is to open.
return void
        public void ActivateView(ITask task, params object[] p)
        {
            string page = string.Format(CultureInfo.InvariantCulture, "~/Forms/{0}.aspx?ID={1}", task.Name, task.Id);

            HttpContext.Current.Response.Redirect(page, true);
        }

Same methods

WebViewProvider::ActivateView ( ITask task, bool newView ) : void