or
Hello all,
I don't know if this is allowed to be shared here or not. If not, please let me know how I can share this with the community if you can.
I spend a lot of time creating FormViews in Visual Studios for CRUD operations. This video shows you how to use the attached Macros with NotePad++ to automate most of the otherwise tedious re-design from the default FormView created by VS.
It will convert:
It will also either Table or Bootstrap the controls.
I hope you all find this as useful as I have.

<telerik:GridBoundColumn HeaderText="ColumnTitle" DataField="FieldName" HeaderStyle-Width="15%" ItemStyle-Width="15%" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center" Aggregate="Sum"></telerik:GridBoundColumn>var data = CallWebMethod(WebserviceUrl, Parameter);var MasterTable = gv.get_masterTableView();MasterTable.set_dataSource(data);MasterTable.dataBind();
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <ClientEvents OnRequestStart="centerLoadingPanel" /> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="gridDpSummary"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="gridDpSummary" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings>
</telerik:RadAjaxManager><telerik:RadCodeBlock ID="RadCodeBlock2" runat="server>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" IsSticky="true">
<img src='/Content/images/ajax-loader.gif' > </telerik:RadAjaxLoadingPanel>
</telerik:RadCodeBlock>

