I created my own xsd to define the schema for my controls so intllisense would work in HTML view. I attempted to mimic what was done in asp.xsd to "wire" up an event (<xsd:attribute name="OnDoWhatever" vs
mtype="event" />).
I see the event show up in intellisense but the event I point it to does not fire. (This is a control with a multiple TextBoxes. The event is a TextChanged event for the one of the TextBoxes. I have a Public EventHandler defined in the control. I can, in the code-behind, wire the event up using Handles.)
Is there a good example out there for this?
I see the event show up in intellisense but the event I point it to does not fire. (This is a control with a multiple TextBoxes. The event is a TextChanged event for the one of the TextBoxes. I have a Public EventHandler defined in the control. I can, in the code-behind, wire the event up using Handles.)
Is there a good example out there for this?