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
Joe WoodcoxJoe Woodcox 

apex:outputLink component to the ID of the case

Thiyagarajan Selvaraj (SFDC Developer)Thiyagarajan Selvaraj (SFDC Developer)
Hi Joe,

If you use standard controller for the case, then do like following 
 
<apex:outputLink value="/{!case.Id}" >Case</apex:outputLink>

If you loop through the cases using iterative component on the visualforce page, then do like following,
<apex:repeat value="{!casesList}" var="case">
    <apex:outputLink value="/{!case.Id}" >Case</apex:repeat>
</apex:repeat>

Change as per your requirements