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
Rst123Rst123 

custom button to redirect to a salesforce standard month view

AshlekhAshlekh
What excatly do you want to know as your question not to much clear.
Pramod_SFDCPramod_SFDC
Hi

Are you looking for this ..??

<apex:commandButton value="View Calendar" action="{!viewCalendar}"/>


Controller:

public PageReference viewCalendar()
    {
        PageReference page =new PageReference('/00U/c');
        page.setRedirect(true);
        return page;
    }


Regards
Pramod