2

following code shows the error..

req.Display = "dynamic"; 
cell.Controls.Add(req); 

It shows the error. how to display dynamic ?

Amol Kolekar
  • 2,307
  • 5
  • 30
  • 45
kkk
  • 273
  • 1
  • 6
  • 20

1 Answers1

1

You must use the enum available for the Validator.

req.Display=ValidatorDisplay.Dynamic;

Think this will help you.

Vijaychandar
  • 716
  • 5
  • 21