I have the following code. In Visual studio, you can find the regular expression and replace it. therefore, I cannot generate a regular expression for this code. Can anybody help me?
<div class="span2 control-group">
<%--<asp:Label ID="lblTeamName" Text="Team" runat="server" CssClass="control-label bold"></asp:Label>--%>
<div class="controls">
<%--<telerik:RadComboBox ID="rcbTeam" EmptyMessage="Select" runat="server" Width="160px"
OnSelectedIndexChanged="rcbTeam_SelectedIndexChanged" AutoPostBack="true">
</telerik:RadComboBox>--%>
<asp:RequiredFieldValidator ID="RF2" runat="server" ErrorMessage="*" Display="Dynamic" Font-Size="X-Large"
SetFocusOnError="True" ValidationGroup="ChartValidate1" ForeColor="red" ControlToValidate="rcbTeam"></asp:RequiredFieldValidator>
</div>
</div>
The regular expression needed to find content between <% - content -%>
source
share