Tagged Questions

1
vote
3answers
57 views

Is it safe to rely on an ASPX file being valid XML?

If an aspx file compiles, is it safe to assume that it is valid XML? Does ASP.NET work by parsing the server controls as XML?
0
votes
2answers
342 views

control inside Wizard <StepNavigationTemplate> tag isn't available in code-behind?

I put a Literal control in the tag in the Wizard control. In the codebehind, I can't access that control. Why is that?
0
votes
1answer
328 views

Better performance: OnDataBound or iterate on PreRender

I have a menu where I am setting the selected value dynamically. Will I have better performance doing setting the value on a DataBound event or iterating over the menu in the PreRender event? ...