Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Dave Prout #1
Adding a second button if the first button is clicked
Hi
I build my form dynamically in Page_Load, with a button
If the user clicks the button I want to create another button. I can do this but the button_click event doesn't seem t
fire. I've been working on this for days, so any help would be greatly appreaciated
Thank
Dav
UK
Dave Prout Guest
-
Dynamically adding Dropdown, Text Box, Add Button and Remove Button
Hi Everyone, I am facing a poblem in creating a row which contains following scenario in ASP.NET |DROP_DOWN_LIST | |TEXT_BOX| ... -
Prompt message when button is clicked in FDF Toolkit
Hi all, Could somebody give help on my urgent question: One 'Submit a form' button on the PDF Template is used to submit form data to target... -
Which action button clicked?
Can someone show me how to determine which button the user clicked? use CGI; $cgi->param did not contain the action parameter. I want to... -
identifying which radio button i clicked
I move from one form to another when I click to a radio button. I can identify which radio button I clicked by trapping its value. but my problem... -
Which button column was clicked.
If I have two button columns in a datagrid, can I determine in the SelectedIndexChanged routine, which column was clicked? Thanks in advance. ... -
John Saunders #2
Re: Adding a second button if the first button is clicked
"Dave Prout" <anonymous@discussions.microsoft.com> wrote in message
news:D2A84B4B-4C2E-4329-BA29-1F47F00428BF@microsoft.com...this but the button_click event doesn't seem to> Hi,
>
> I build my form dynamically in Page_Load, with a button.
>
> If the user clicks the button I want to create another button. I can doappreaciated.> fire. I've been working on this for days, so any help would be greatly
Instead of creating the button when the first one is clicked, how about
creating both buttons to start with, then setting the second one visible
when the first is clicked.
This avoids tricky issues with creating controls dynamically, primary among
them the fact that you need to create the same controls, in the same order,
both on the initial request, and on every postback.
--
John Saunders
johnwsaundersiii at hotmail
John Saunders Guest



Reply With Quote

