I have the following text in Visual Studio Design View:
<% =Utility.CreateLabel("lblHeader_LP","Online Loan Application") %>
and I need to convert that text into the following:
<asp:Label ID="lblHeader_LP" Text="Online Loan Application" runat="server"/>
I am not really sure how to accomplish that but thinking the following:
Find: <% =Utility.CreateLabel("(*.)","(*.)" &>
Replace: <asp:Label ID="$1" Text="$2" runat="server" />
Any idea?