I'm using vStd 2010 Pro. Following steps 1-4 to the letter, my markup comes up slightly different than yours on step 5. By typing, I was able to get the code to look and behave as in the TIO, but why the discrepancy? What step am I missing?
Here is the code I'm getting. Markup between >>>>> and <<<<< was manually typed in:
HTML Code:
<asp:DetailsView ID="DetailsView1" runat="server"
>>>>>>AutoGenerateRows="False"
DataKeyNames="Id"<<<<<
DataSourceID="SqlDataSource1"
DefaultMode="Insert"
Height="50px"
Width="125px">
<Fields>
>>>>>>><asp:BoundField DataField="Id" HeaderText="Id" InsertVisible="False" ReadOnly="True" SortExpression="Id" /><<<<<<
>>>>>><asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" /><<<<<
>>>>>><asp:BoundField DataField="SortOrder" HeaderText="SortOrder" SortExpression="SortOrder" /><<<<<
<asp:CommandField ShowInsertButton="True" />
</Fields>
</asp:DetailsView>
Thanks for your help. mk