T
tascien
Please look at the code below:
Would this code cause an infinite loop at any logic?
Sub Page_Load( sender , e ) handles Mybase.Load
sw = new StringWriter
hw = new HtmlTextWriter(sw)
MyBase.Render(hw) '<-- would this code call this sub again,
'thus causing infinite loop?
hw.close
debug.print sw.ToString()
end Sub
Would this code cause an infinite loop at any logic?
Sub Page_Load( sender , e ) handles Mybase.Load
sw = new StringWriter
hw = new HtmlTextWriter(sw)
MyBase.Render(hw) '<-- would this code call this sub again,
'thus causing infinite loop?
hw.close
debug.print sw.ToString()
end Sub