D
Darrel
Ugh. I just spent an hour banging my head due to VS.net deciding to rewrite
my code. I have this:
<% if something %>
<object>
<% else %>
<object>
<% end if %>
<param />
</object>
But if I flip to design view and back, it rewrites it as such:
<% if something %>
<object>
<% else %>
<object>
<param />
</object>
<% end if %>
Anyway to get it to stop doing that!?
If not, I'm going to just repeat the entire object tag block, but since
there's 30+ parameter tags, it's going to get rather verbose.
-Darrel
my code. I have this:
<% if something %>
<object>
<% else %>
<object>
<% end if %>
<param />
</object>
But if I flip to design view and back, it rewrites it as such:
<% if something %>
<object>
<% else %>
<object>
<param />
</object>
<% end if %>
Anyway to get it to stop doing that!?
If not, I'm going to just repeat the entire object tag block, but since
there's 30+ parameter tags, it's going to get rather verbose.
-Darrel