help in 433 mhz tx and rx interfacing

hi i am using the following module:

http://nskelectronics.in/rf_transmitter_reciver.html

I want to interface with my at89s52 controller..i connected the data pin of the transmitter module to the tx pin of the controller and similarly for the receiver i connected the data pin of the receiver module to the rx pin..i used serial transmission code..but i am not getting any output at the receiver..am i supposed to encode the data using manchester?if so, how to do it..?

am i supposed to encode the data using manchester?

No, what you are doing should work. If it is not then you are doing something wrong but I can't tell what from your description.

am juz sending a '1' serially to the receiver..so that when it s received a led glows..here is the code what i am using..

//TRANSMITTER SECTION 
#include <reg51.h> 
void main(void) 
{ 
   int i; 
   TMOD=0x20; 
   TH1=0xFD; 
    SCON=0x50; 
   TR1=1; 
        while(1) 
   { 
      SBUF=1; 
      while(TI==0); 
      TI=0; 
   } 
} 
//RECEIVER SECTION 
#include <reg51.h> 
sbit mybit=P2^0; 
void main(void) 
{ 
   TMOD=0x20; 
   TH1=0xFD; 
    SCON=0x50; 
   TR1=1; 
        while(1) 
   { 
      while(RI==0); 
      mybit=SBUF; 
      RI=0; 
   } 
}

Not sure what you mean by transmit and receive sections?
Do you have two arduinos?
From the look of the code you are not using an arduino at all because that is not the way you write arduino code. So what is the physical setup.

i am using 2 microcontrollers...not arduino's.if i am going to use arduino the code complexity will get reduce....i wil use arduino library...all i want to know is if i want to send data using the above module am i supposed to do encoding of data even if the data going to be transmitted is a '1' to make the led on the receiver side on..hope u got my question??

am i supposed to do encoding of data

No it should work as long as you are sending an alternating 0 and 1 that pattern should be repeated at the receiver providing it is not too fast. It depends on the transmitter what baud rate it can cope with normally it is less than 9600 baud.
It will not cope with a constant logic level but aysink should have start and stop bits and so should be OK.