Click here to Skip to main content
15,884,099 members
Articles / Web Development / HTML

Visual Studio Add-In for Web Parts Generation

Rate me:
Please Sign up or sign in to vote.
4.94/5 (18 votes)
19 Jan 2009CDDL8 min read 155.5K   657   64  
A Visual Studio add-in that allows generation of Web Parts based on prepared ASCX controls/templates.
<%@ Control %>
<asp:Panel ID="SubmitQuestionPanel" runat="server">
    <table cellpadding="0" cellspacing="0" border="0">
        <tr>
            <td colspan="2">Ask a question</td>
        </tr>
        <tr>
            <td><asp:Label ID="NameCaption" runat="server" Text="Name:"></asp:Label></td>
            <td><asp:TextBox ID="Name" runat="server"></asp:TextBox></td>
        </tr>
        <tr>
            <td><asp:Label ID="EmailCaption" runat="server" Text="E-mail address:"></asp:Label></td>
            <td><asp:TextBox ID="Email" runat="server"></asp:TextBox></td>
        </tr>
        <tr>
            <td><asp:Label ID="QuestionCaption" runat="server" Text="Your question:"></asp:Label></td>
            <td><asp:TextBox ID="Question" runat="server" TextMode="MultiLine" Rows="4"></asp:TextBox></td>
        </tr>
        <tr>
            <td colspan="2"><asp:Button runat="server" ID="Submit" Text="Submit"></asp:Button></td>
        </tr>
    </table>
</asp:Panel>
<asp:Panel ID="StatusMessagePanel" runat="server">
    <table cellpadding="0" cellspacing="0" border="0">
        <tr>
            <td valign="middle"><asp:Label runat="server" ID="Status"></asp:Label></td>
        </tr>
        <tr>
            <td valign="middle"><asp:Button runat="server" ID="NewQuestion" Text="New Question"></asp:Button></td>
        </tr>
    </table>
</asp:Panel>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
CEO Vega IT Sourcing
Yugoslavia Yugoslavia
Sasa Popovic has M.Sc degree in Computer Sciences and Electrical Engineering.

He is a Software Architect and co-owner at Vega IT Sourcing - http://www.vegaitsourcing.rs.

Sasa is owner and contributor of several projects at codeplex (http://www.codeplex.com/aspnetlibrary).

You can read more about Sasa Popovic or add him to your contacts list at: LinkedIn

Comments and Discussions