| Thread | Last Post | Replies |
|
| updating usercontrol textbox.text programmatically from host page | 30 May 2008 15:16 GMT | 2 |
In the aspx hostpage codebehind using ... Dim myUC As New UserControl myUC = Me.LTUC Dim myTB As New TextBox
|
| MasterPage | 30 May 2008 09:02 GMT | 3 |
Does anybody knows if exist any way to use a master page without the "ContentPlaceHolderID" in the content page? (the default.aspx or services.aspx for example) What I want to do is load this aspx with the masterpage specified in the
|
| Generating __doPostBack & dopostbackwithoptions | 29 May 2008 15:44 GMT | 5 |
I created a custom button and I'm writing the onclick javascript event myself to cause a postback... Now I use Validators but I need to use dopostbackwithoptions... Is there any .NET utility functions to generated the function signature based on a
|
| null reference exception from FindByValue | 28 May 2008 09:09 GMT | 3 |
I have 3 Tabs (TabContainer - AJAX) I've successfully ben able to retain the tab that the user selects so that the same tab is selected on different pages... now...
|
| Update SqlDataSource with value of DropDownList in EditTemplate on GridView | 27 May 2008 00:39 GMT | 2 |
I have a GridView with a DropDownList in the EditTemplate of one if my columns. I've got the drop down displaying the correct data, but need to do an update when the user changes the value and updates the row. I'm having difficulty getting the GridView's SqlDataSource ...
|
| Asp.net and library dlls | 24 May 2008 10:47 GMT | 1 |
Don't see any official notice that compiled library dll's loaded in the BIN directory of an asp.net website need to be thread safe, but concurrent visits to the same web site sure bear this out. Does anyone know the answer to this?
|
| DropDownList <optgroup> | 22 May 2008 20:27 GMT | 4 |
Just wondering if anyone has figured out a way to add <optgroup> to DropDownLists? Theoretical code that should work: <asp:DropDownList id="ddlWeightClass" runat="server">
|
| Custom Control - Inherits question | 22 May 2008 20:23 GMT | 1 |
I'm creating a custom control, that inherits from an already existing ASP.Net control. However, I don't want all the properties available. How can I code this, in the new control?
|
| PostbackUrl | 20 May 2008 20:48 GMT | 3 |
I am facing a problem in using PostbackUrl property in asp.net. I have set value for PostBackUrl property of asp:Button control. Fine, that it redirects user to another page, allowing me to access all properties, controls of previous page.
|
| Hide textbox / Make textbox not visible (NOT USING visible property) | 19 May 2008 16:36 GMT | 1 |
I have a textbox wich will be filled with a BASE64-value (an image) on the clientside. This values is then transported to the server on postback. I don't want this textbox to be visible, however, if I set the textbox to 'invisible' my before mentioned construction is not working.
|
| Custom Control question (using Master page) | 14 May 2008 22:29 GMT | 2 |
Using my custom control, I need to locate controls in the Content section - - I know that I can do something like: If (ctrl Is Nothing And Not page.Master Is Nothing) Then ctrl = page.Master.FindControl("Content").FindControl(id)
|
| Invoke an Input on a form from an app | 13 May 2008 20:17 GMT | 1 |
I am trying to pull information off of a Bus Transit website. They do not have web services and have know plans too! I would like to know: 1. how to run/start a click event on an Input button
|
| Menu control a step behind on Selected Item | 12 May 2008 20:53 GMT | 4 |
When processing a page load during a postback the menu control never shows the menu item that was just clicked when referencing SelectedItem. Instead it is always one step behind. On the other hand when using the TreeView control and referencing
|
| How to execute event code for DropDownList? | 12 May 2008 00:29 GMT | 4 |
when you double click a drop down control on a web form, it creates the OnSelectedIndexChanged function placeholder in the code behind file. How do you then get that code to execute? Changing the selection of the drop down does not return to the server even though ...
|
| How to access user control child controls | 08 May 2008 15:51 GMT | 1 |
I am loading some user controls and I want to populate the child controls within them, but can't access them. I doing the following in a loop. However the TitleText or other child controls are not available. They have the runat server tag.
|