April 2009 - Posts

4
Comments

How to pass parameters to the dynamically added user control by aghausman12

In this post, I will explain how you can pass parameter to the dynamically added (from code behind) User Control. Most of you might aware of how we can achieve this in web application project. Following is the code for that 1: Dim objCon As Control =...
Filed under: , ,
1
Comments

Get Repeater Control Output in String by aghausman12

In this post I will share with you a small code snippet which will help you to get the repeater control output in string variable. 1: Dim sb As New StringBuilder() 2: Dim objHtml As New HtmlTextWriter( New System.IO.StringWriter(sb)) 3:   4: If dt...
Filed under: ,
More Posts