Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Global class PolicyHolderDetails {
  2. Public string Name{get;set;}
  3. @RemoteAction
  4. global static PageReference Save(String Name){
  5. // some stuff.
  6. return null;
  7.  
  8. }
  9.  
  10. @RemoteAction
  11. global static PageReference CheckInsurance(String insurance1){
  12. //i need access to Name parameter here..So that i can query..Is there any workaround for this..
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement