Uiinfrastructure API Docs  
 

Redirect.SetIsHTTPRedirect Method 

This method sets whether or not this redirect should be handled as a true 302 redirect or an internal server redirect. 302 redirects will cause a roundtrip to the server, and the URL will show up in the browser window. This will allow you to safely refresh the page. Server redirects don't incur a roundtrip to the server, but the new URL will not show up in the browser. This can cause form data to be submitted twice if the user refreshes the page. In general, we should use internal server redirects to save time. However, destructive/constructive actions (saving an object, etc...) should use real 302 redirects. The default is internal server redirect.

public virtual void SetIsHTTPRedirect(
   bool bHTTPRedirect
);

Parameters

bHTTPRedirect

See Also

Redirect Class | com.plumtree.uiinfrastructure.activityspace Namespace