Tom
|
| Posted: 06/10/2003, 11:14 AM |
|
I'm using CCS to generate asp.net with VB.
I'm new to asp.net but I see in the generated code myfile.aspx that I can changed the parameter for RepeatDirection from the default of "Horizontal" to "Vertical".
If I touch the file myfile.aspx to make that change, CCS will no longer generate the myfile.aspx if I make changes in design mode.
Where do I thru design mode in CCS changed the asp.net attribute for the radio button list so I don't lose the generation capabilty?
|
|
|
 |
Tom
|
| Posted: 06/11/2003, 10:30 AM |
|
Solved my problem so that I can still do design changes in CCS
in myfile.aspx
The radio button list looks like this:
<asp:RadioButtonList id="V_EXAM_QUESANS_SEL_PK" CssClass="CsaInput" RepeatDirection="Horizontal" RepeatLayout="Flow" runat="server"/></td>
If I manually edit the RepeatDirection to "Vertical", CCS will no longer generate that file.
So in myfile.aspx.vb, in the before show event, I added V_EXAM_QUESANS_SEL_PK.RepeatDirection = RepeatDirection.Vertical
which overrides the setting.
|
|
|
 |
|