}
The following works for me when I added a Contact record:
The table should not be inside the actionfunction element. The actionfunction tag should be inside the form, but not the pageBlock.Matt<apex:page controller="searchClass">
<script>
window.onload = function()
{
some();
}
</script>
<apex:form >
<apex:actionfunction action="{!searchContact}" name="some" rerender="abc"/>
<apex:pageBlock>
<apex:pageBlockSection >
<apex:pageBlockTable value="{!Listcontacts}" var="con" id="abc">
<apex:column value="{!con.Name}"/>
</apex:pageBlockTable>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>