following code shows the error..
req.Display = "dynamic";
cell.Controls.Add(req);
It shows the error. how to display dynamic ?
following code shows the error..
req.Display = "dynamic";
cell.Controls.Add(req);
It shows the error. how to display dynamic ?
You must use the enum available for the Validator.
req.Display=ValidatorDisplay.Dynamic;
Think this will help you.