Support Ticket Attachments

Support Ticket Attachments

A support ticket form with file attachments. Users can attach screenshots, logs, or documents when submitting a bug report or support request. Uses Web Forms controls for all form fields.

Drag & drop files here, or paste from clipboard
<asp:TextBox ID="txtSubject" runat="server" CssClass="form-control" />
<asp:DropDownList ID="ddlPriority" runat="server" CssClass="form-select">
    <asp:ListItem Text="Low" Value="low" />
    <asp:ListItem Text="Medium" Value="medium" Selected="True" />
    <asp:ListItem Text="High" Value="high" />
</asp:DropDownList>
<asp:TextBox ID="txtDescription" runat="server" TextMode="MultiLine" />

<au:AjaxFileUpload ID="Uploader1" runat="server"
    AllowMultiple="true"
    AutoUpload="true"
    ShowProgress="true"
    ButtonText="Attach Files" />

<asp:Button ID="BtnSubmit" runat="server" Text="Submit Ticket"
    OnClick="BtnSubmit_Click" />