ui-convert-extractor-webforms
Installation
SKILL.md
WebForms Extractor
Converts ASP.NET WebForms pages (.aspx) and user controls (.ascx) into Design IR.
What This Extracts
| Source Pattern | IR Output |
|---|---|
<asp:Button runat="server"> |
Button (btn) |
<asp:TextBox runat="server"> |
Input (inp) |
<asp:Label runat="server"> |
Text (txt) |
<asp:Image runat="server"> |
Image (img) |
<asp:Panel runat="server"> |
Frame (fr) |
<asp:GridView> |
Table (tbl) |
<asp:Repeater> |
List (lst) with one item |
<asp:ListView> |
List (lst) with one item |
<asp:ContentPlaceHolder> |
Content placeholder frame |
| Standard HTML elements | Standard IR mapping |
Related skills