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 ..

praveen murugesanpraveen murugesan
Hi,

Try this,

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


Controller:

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



Mark this as best answer if its helps.

Thanks.

Praveen Murugesan.