Hi, >> Additionally, just for undertanding. Do you guys think it the right >> notation >> (.aspx file consuming the methods >> in .aspx.vb via interface) ?
In terms of object oriented design, the aspx and the aspx.vb are two files but both make only one class (this is what partial classes are about, and their main goal is separating the UI itself and the UI logic). So I would model them as a single Class (Component, Object, whatever) Hope this helps. -- Cheers, Christian López Espínola <penyaskito>
