1.

How To Read The Parameter Value From The Url In Apex?

Answer»

CONSIDER that the PARAMETER NAME is “RecordType”.

STRING recordType = Apexpages.currentPage().getParameters().GET('RecordType');

Consider that the parameter name is “RecordType”.

String recordType = Apexpages.currentPage().getParameters().get('RecordType');



Discussion

No Comment Found