Set ContentPlaceHolder data through code ASP.NET
Is it possible to set the data in a ContentPlaceHolder through code? This is what I am thinking of: dim oCPH as new ContentPlaceHolder oCPH.id = "column1" 'this id is the one that corresponds with the ID I set on the page oCPH.content = "content here" '<-- not real code Obviously that is not correct syntax, I hope that this clarifies...