• SFDCComet
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

To state the obvious first, I am not a developer. So any help is greatly appreciated. I need to turn an s-control into a visual force page:

 

S-control:

<html>
<script language="JavaScript">
function redirect() {
parent.frames.location.

replace("/home/actlist.jsp")
}
redirect();
</script>
</html>

 

I can copy and paste the s-control into the visualforce tab and it works, but I don't think that is the right way to go about this. Secondly, I would like the Activity tab that I have created to be highlighted when the user is on the activity page, it currently highlights the Home tab.

 

Thanks again to anyone that can help.