Implementing an IsDirtyFlag in .net 1.1

  • Thread starter Thread starter Jeremy Kitchen
  • Start date Start date
J

Jeremy Kitchen

I am attempting to implement something similar to an is dirty flag in
vb.net 1.1

I have added an atttribute named isDirty to a asp:dropdownlist. I am
able to read the value by using the attribute list for non-properties
in the code behind. In the aspx page I have javascript that
successfully updates the value.

The problem comes in when I click submit and the isDirty from the
attribute list in the code behind still has the default value
specified in the aspx page.

Can anyone tell me what I am doing wrong?

Thanks
Jeremy Kitchen
 
This is the author of the first post. I have solved my initial
problem.

I was able to create a custom webcontrol that has the isDirty
Property. My problem is solved.
 
Back
Top