| 12345678910111213141516171819 |
- //
- // System.Web.UI.INavigateUIData
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- namespace System.Web.UI {
- public interface INavigateUIData {
- string Name { get; }
- string NavigateUrl { get; }
- string Value { get; }
- }
- }
- #endif
|