• Rashi Garg 12
  • NEWBIE
  • 5 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 5
    Replies
Hi

I tried creating a visual force page directly using  by navigating URL
https://na30.salesforce.com/apex/secondpage , From there I was able to directly create the page using 
Error message


Though I was able to create the page, I could not view the page editor option .
Please help

I have my first trigger written as before insert and need to change it to be before insert, before update but I'm stuck! Any ideas?

trigger TaskCustomActivity on Task (before insert,  before update){
if (trigger.isBefore)
{
if(Trigger.isInsert)
{
for(Task.t = trigger.new){
t. custom_activity_type__c = Type;
insert cont;
}
}
else if (Trigger.IsUpdate)
{
Type = '(Update)';
Custom_Activity_Type__c = Trigger.new;
update cont;
}
}
}

Hi,

I have created a Visualforce page that shows all records from a Custom Object.This page is associated with a Force.com site page.  
When I attempt to open the link of the Force.com site... I get an "Authorization Required" page. Is there some sort of permission that I might be missing?

Thanks!