hi all i using angular js i need to transfer the value from one page controller to another page controller and get that value into an a scope anybody help how to do this
You can use $rootScope instead of $scope:
$rootScope
$scope
// do not forget to inject $rootScope as dependency $rootScope.Message="Hi welcome";
But the best practice is using a service and share data and use it in any controller you want.
service