DataBinding Not Working In My ASP.NET UserControl?

OK, I have figured out a work-around for this by adding SystemObjectRecordId to the ViewState: public long SystemObjectRecordId { get { if (ViewState"SystemObjectRecordId"! = null) return long. Parse(ViewState"SystemObjectRecordId".ToString()); else return 0; } set { ViewState"SystemObjectRecordId" = value; } } Its not idea, but it works.

I still don't get why I can't set the declarative value as previously specified but this will have to do for now.

You should be able to fix this by adding the Bindable attribute to your SystemObjectRecordId poperty.

Thanks. I already tried that and it didn't work. – Code Sherpa Aug 6 '10 at 20:57.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions