Hi,
1)I am having same issuse.ie., I have a Textbox,Button,RequireFieldValidation inside an update panel.
First time it is working properly and my error message is shown.
2)After page load ,RequireFieldValidation is working but i am not able to see my error message.
3)When i remove my update panel it is working fine.So i though ,this issuse is with update panel.
4)As you post in this link, i downloaded all that validation controls and place its dll in my Bin folder.
and also i added tagmapping in my web.config file and added that control to my web page.
5)My code is below :-
Sample.Web.UI.Compatibility.RequiredFieldValidator Rqfdv = new Sample.Web.UI.Compatibility.RequiredFieldValidator();
Rqfdv.ID = "rfv" ;
Rqfdv.ControlToValidate = "$txtInput";
Rqfdv.ToolTip = "txtInput Cannot be blank.";
Rqfdv.ErrorMessage = "*";
Rqfdv.ValidationGroup = "FooterGroup";
cell.Controls.Add(Rqfdv);
6)But now same thing happening ie., after Postback it is firing but not showing error message.
7)Can you please help me.