Ask a Question related to ASP.NET General, Design and Development.
-
Alessandro #1
Problems with Dinamic controls
i want to create dinamicaly an image Button, but i'm not able to associate a
relative server command on click, any idea ?
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim oImageButton As New System.Web.UI.WebControls.ImageButton()
oImageButton.CssClass = "tab"
oImageButton.ID = "test"
oImageButton.CommandName = "test"
oImageButton.CausesValidation = True
oImageButton.EnableViewState = True
PlaceHold.Controls.Add(oImage)
end
Alessandro Guest
-
dinamic address in dreamweaver
Hi there!! I have a web site with database (APS - MS Access - Dreamweaver), and I would like to to storage images in a folder on my server and... -
Dinamic Text and URL
Hello!: Does anyone knows if there is a tutorial on how to display text in a flash animation from a .txt file (i know this is possible). What I... -
Problems with dinamic text and masks...
Somebody can help me, please? I need use a dinamic text (in flash mx) with any mask over that text.... The problem is that dinamic text with a... -
Dinamic controls creation
Hi, please see following thread at ASP.NEt Forums: http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=250529 -- Teemu Keiski... -
problems with key controls
I am experiencing a number of problems in my 3D environment. I have a model that is controlled by the arrow keys - left arrow key - moves character... -
Bjoern Wolfgardt #2
Re: Problems with Dinamic controls
If I understand you, you are missing the click event.
This should help you:
oImageButton.Click += new System.EventHandler(this.oImageButton_Click);
where oImageButton_Click is a function like this:
private void oImageButton_Click(object sender, System.EventArgs e)
{
Do something...
}
Hope this helps
Bjoern Wolfgardt
"Alessandro" <gemini_two@hotmail.com> schrieb im Newsbeitrag
news:#xiUpf2SDHA.2248@TK2MSFTNGP11.phx.gbl...a> i want to create dinamicaly an image Button, but i'm not able to associate> relative server command on click, any idea ?
>
> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
> Dim oImageButton As New System.Web.UI.WebControls.ImageButton()
> oImageButton.CssClass = "tab"
> oImageButton.ID = "test"
> oImageButton.CommandName = "test"
> oImageButton.CausesValidation = True
> oImageButton.EnableViewState = True
> PlaceHold.Controls.Add(oImage)
> end
>
>
Bjoern Wolfgardt Guest
-
Cristian Suazo #3
Re: Problems with Dinamic controls
You should also create you button in the Page_Init event. If not, then the
event will not be detected.
The reason for this is that the viewstate for the control is loaded before
the Page_Load so if you create the control in the page_load then what
happens:
1. the viewstate is loaded, the button is not found so no viewstate is
loaded into it
2. Button is loaded in the page_load
2. because the viewstate was not loaded, the event will not be triggered.
In the case that you load the button in the page_init this happens:
1. Button is loaded in the page_init
2. viewstate is loaded for the control is loaded
3. the event on the button click is triggered.
I hope this cleared things up...
/Cristian
"Alessandro" <gemini_two@hotmail.com> wrote in message
news:%23xiUpf2SDHA.2248@TK2MSFTNGP11.phx.gbl...a> i want to create dinamicaly an image Button, but i'm not able to associate> relative server command on click, any idea ?
>
> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
> Dim oImageButton As New System.Web.UI.WebControls.ImageButton()
> oImageButton.CssClass = "tab"
> oImageButton.ID = "test"
> oImageButton.CommandName = "test"
> oImageButton.CausesValidation = True
> oImageButton.EnableViewState = True
> PlaceHold.Controls.Add(oImage)
> end
>
>
Cristian Suazo Guest



Reply With Quote

