Tagged Questions
1
vote
5answers
349 views
ASP.NET Server Control Property Attribute must be required
I have a custom ASP.NET server control CustomControl with a property attribute Path.
If the Path is not explicitly specified, then I want an exception to be thrown.
For example,
...
0
votes
3answers
537 views
How to register custom server control on ASP.NET page
I have a project and I am trying to register a custom server control (there is no .ascx file) on the page. I am currently using
Class Declaration
namespace MyApp.Controls{
public class ...
0
votes
1answer
449 views
Possible to have a inner control on a custom server control?
I would like to be able to do something like:
<ui:Tab Title="A nice title">
<TabTemplate>
<asp:Literal runat="server" ID="SetMe">With Text or Something</asp:Literal>
...