Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:872650
More Search Options
RSS Available
Matching Posts
Re: code for dynamically added button
Actually create the button and add to the control. You can then add the event. protected void Page_Load(object sender, EventArgs e) { Button btn = new Button(); btn.ID = "btn1"; btn.Click += new EventHandler(btn_Click); placeholder1.Controls.Add(btn); } void btn_Click(object sender, EventArgs e) { Response.Write("Click"); }
Posted to
Web Forms
(Forum)
by
stevew1975
on 7/20/2009
Re: Model Popup Extender
It is possible to place an IFrame within the modal popup, this way you get to show another page.
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
stevew1975
on 7/17/2009
Re: Problem in UpdatePanel
only the html within the updatepanel will be rendered, so you are not able to update the text box, unless it is within the updatepanel.
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
stevew1975
on 7/17/2009
Re: AJAX Accordion Control in Update Panel Deployed
it seems that you are using google chrome, have you tried any other browsers? i have tried going to http://www.tekcomsolutions.com/AddNewRecipeAccordion.aspx and i am getting a 404 straight away, also with http://www.tekcomsolutions.com/ViewMyRecipes.aspx. One possibility could be the setup within IIS, have you set up anything with virtual directories?
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
stevew1975
on 7/17/2009
Re: MasterPages and css issues
the <link> tag for the stylesheet needs to be in the header of the master page, and i cannot see this in your code.
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
stevew1975
on 7/17/2009
Re: When dynamically adding a button to an asp:table the click event will not fire
i have this code and it works. protected void Page_Load(object sender, EventArgs e) { AddDynamicButton("fire", row1); } void AddDynamicButton(string btnCmdArg, TableRow row) { Button dynamicButton = new Button(); dynamicButton.ID = "aButton" + btnCmdArg; dynamicButton.Click += new EventHandler(dynamicButton_Click); dynamicButton.CommandArgument = btnCmdArg; TableCell buttonCell = new TableCell(); buttonCell.Controls.Add(dynamicButton); row.Cells.Add(buttonCell); buttonTable.Rows
Posted to
Web Forms
(Forum)
by
stevew1975
on 7/17/2009
Re: AJAX Accordion Control in Update Panel Deployed
is it possible to check the iis logs, this will tell you the name of the page it is trying to call. It sounds like the action/page it calls on postback is changing.
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
stevew1975
on 7/17/2009
Re: autocomplete extender without any key
If you set the minimumprefixlength to 0, the list will always appear before entering any details check this link http://forums.asp.net/t/1443559.aspx
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
stevew1975
on 7/17/2009
Re: I want to buy an ASP.net book
i would always get the latest. 3.5 books will include ajax/linq etc. This link will show some good examples. http://www.amazon.co.uk/s/ref=nb_ss_w_h_?url=search-alias%3Daps&field-keywords=asp.net+3.5&x=0&y=0
Posted to
Getting Started
(Forum)
by
stevew1975
on 7/17/2009
Re: Change Focus of Tab Panel
it will require some changing to the source code of the ajaxcontrol toolkit. see this link http://forums.asp.net/t/1074319.aspx
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
stevew1975
on 7/16/2009
Page 1 of 19 (188 items) 1
2
3
4
5
Next >
...
Last »
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
ASP.NET:
T4MVC now has a real home and a dedicated forum!
TechNet Edge:
Windows Server 2008 R2 : New Power Management Features
ASP.NET:
Web Deployment Painkillers: VS 2010 & MS Deploy
WindowsClient:
Application Accessibility Testing
WindowsClient:
Prism & WCF RIA Services
Channel 9:
Sharepoint 2010 and Claims-Based Identity
WindowsClient:
IRhetoric Ported To BlogEngine.NET
WindowsClient:
PDC Recap and More
Channel 9:
Reactive Extensions API in depth: Primitives
WindowsClient:
New WPF Features: MultiTouch
WindowsClient:
codeplex.com/testapi v 0.4 available
Channel 9:
The Visual Studio Documentary - Alan Cooper, the Father of Visual Basic
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online