function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sekhar maramreddysekhar maramreddy 

when click on button redirect whole page

when click on button redirect whole page
Rahul KumarRahul Kumar (Salesforce Developers) 
Hi Sekhar,
<apex:page>
    <apex:form>
        <apex:commandButton value="Enviar" action="{!doSubmit}" oncomplete="abc();"/>
    </apex:form>
<script>
function abc() {
    window.location = 'https://www.google.com';
}
</script>
</apex:page>

https://stackoverflow.com/questions/16562577/how-can-i-make-a-button-redirect-my-page-to-another-page

Hope it will be helpful.

Thanks
Rahul Kumar