• ambiti
  • NEWBIE
  • 0 Points
  • Member since 2010

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

Hi !

I want to create a fixed url like http://www.mydomain.com/aboutus.html , is it possible to store it and its html content in database,and how to relate them?

A simple sample is lovely.

Thanks!

  • April 23, 2010
  • Like
  • 0

Hi,

I want to display a link in a VF page using the following code:

 

<apex:outputLink value="{!Hello}">KICCP</apex:outputLink>

 while Hello is a property defined in a class named Kiccp ,here is my VF page header and class Kiccp code:

 

<apex:page standardStylesheets="false" showHeader="false" sidebar="false" controller="Kiccp">

 

public class Kiccp{
public Kiccp(){}
public String Hello {
get{ return Hello;}
set{ Hello=value; }
}

}

 

 

 The result is that the outputlink is my index page! I don't know why!
Could some one tell me  how to initialize the property of a class? in which tag to do this?

Thanks!

 

 

 

Message Edited by ambiti on 03-09-2010 05:53 PM
  • March 10, 2010
  • Like
  • 0

I'm new here,please help me. 

While doing a  math operation,like 1+1 million times,how can I get the  time spent running this code? In php there's a microtime() function to do this, is there a samilar funciton in Apex?

  • March 10, 2010
  • Like
  • 0

Hi !

I want to create a fixed url like http://www.mydomain.com/aboutus.html , is it possible to store it and its html content in database,and how to relate them?

A simple sample is lovely.

Thanks!

  • April 23, 2010
  • Like
  • 0

Hi,

I want to display a link in a VF page using the following code:

 

<apex:outputLink value="{!Hello}">KICCP</apex:outputLink>

 while Hello is a property defined in a class named Kiccp ,here is my VF page header and class Kiccp code:

 

<apex:page standardStylesheets="false" showHeader="false" sidebar="false" controller="Kiccp">

 

public class Kiccp{
public Kiccp(){}
public String Hello {
get{ return Hello;}
set{ Hello=value; }
}

}

 

 

 The result is that the outputlink is my index page! I don't know why!
Could some one tell me  how to initialize the property of a class? in which tag to do this?

Thanks!

 

 

 

Message Edited by ambiti on 03-09-2010 05:53 PM
  • March 10, 2010
  • Like
  • 0

I'm new here,please help me. 

While doing a  math operation,like 1+1 million times,how can I get the  time spent running this code? In php there's a microtime() function to do this, is there a samilar funciton in Apex?

  • March 10, 2010
  • Like
  • 0