| Thread | Last Post | Replies |
|
| Wiring an ASP.Net event handler | 15 Jun 2004 17:57 GMT | 1 |
I'm trying to add a series of ASP.Net buttons to a web page - programmatically. That part if working correctly, but the hooking the handler isn't working. '***************************** EXAMPLE CODE ****************************** Dim newButton As New System.Web.UI.WebControls ...
|
| Problem installing IEWebControls With Windows Server 2003 | 15 Jun 2004 17:45 GMT | 1 |
I have some problems when trying to install ieWebControls to a Windows Server 2003 system. The version I am usign is : 1.0.2.226. The installation stop right at the beginning. We have an error log but we really don't know what exactly the error is. Here is a paste of the error log ...
|
| Super Templating? | 15 Jun 2004 08:46 GMT | 7 |
I have two web form pages that inherit from System.Web.UI.Page. They are made of bigpage.aspx bigpage.aspx.cs
|
| Text box data binding | 15 Jun 2004 02:29 GMT | 1 |
If I code a textbox text property to be data bound eg Text='<%# DataBinder.Eval(DataSet11, "Tables[COMPANY].DefaultView.[0].Name") %>' will the data entered into the textbox update the bound dataset? If so, when in the page processing cycle will it be updated?
|
| Can't get subroutine/helper function to work in Datalist control | 14 Jun 2004 21:33 GMT | 1 |
I'm using a subroutine/helper function display an image (the image would be displayed inside a datalist control's <itemtemplate> ) <script language="VB" runat="server"> Public Sub checkforimg(ByVal Imagesubprod1 As String)
|
| Windows Control in Web Form Posting Back | 14 Jun 2004 20:46 GMT | 3 |
I have a Windows Control hosted in an ASP.NET web page. I am using cookieless sessions, so the session token ID is visible in the URI address space of the browser. On a button click in the Windows Control, I want to post information
|
| Problem formatting text in a ListBox | 14 Jun 2004 14:37 GMT | 3 |
I am trying to format some text that I retrieve from a DB. I load the converted (to string) values in an array and then use the following statement: lstChartAccounts.Items.Add(String.Format("{0:15} {1:50} {2:10} {3:10}", value)) I would like my ListBox (WebControl) to show the ...
|
| Loading a ASCX Control on the page and gertting a reference to it | 14 Jun 2004 14:30 GMT | 1 |
I am loading at RunTime a MENU.ascx control on the page and since I need to update the URL paths, depending on the page that is making the call, I need to get a reference to the MENU and reset the URL. CODE:
|
| Add a multiline tooltip on a web control. | 14 Jun 2004 14:22 GMT | 2 |
I need to add two pieces of data to a tooltip and I am not sure on how to go about it. Any help would be appreciated. Example tooltip="Subject: Oceans" + linefeed????? + "Class: Fish"
|
| DataList row text | 13 Jun 2004 22:59 GMT | 1 |
I have a datalist which has a complete list of possible names and a check box declared in the ItemTemplate. I get the name using the standard mechanism: Convert.ToString(DataBinder.Eval(Container.DataItem,"RevenueName"))
|
| Problems with TreeView Display. | 13 Jun 2004 14:02 GMT | 1 |
When I run the Default website: http://servername/GMS/page.aspx The treeview control renders properly. When I create a new website (with a host header) at http://gms.domainname.com/page.aspx
|
| Help with UserControl in Code Behind | 13 Jun 2004 07:15 GMT | 4 |
PatrioticsignI have an aspx page that references a user-control called connect-strings.ascx. This user control uses connections to various databases. Below is the part I am using. 'declared at the top <%@Control Language="VB" %> ' declare user control Public ReadOnly Property ...
|
| Data Bound Controls | 12 Jun 2004 16:31 GMT | 1 |
I have a RadioButtonList on my form. There are only two items in the collection, "No" = 0, and "Yes" = 1. I have the SelectedIndex property bound to a SQL Server table which has a column of datatype, bit. The default value is zero for that column. I expect that after the databinding ...
|
| Align Label Text Right | 12 Jun 2004 02:51 GMT | 2 |
I have a number of labels on my form. I would like the text in the label to be aligned or justified right? I can't find a property to do this. Can it be done? Thanks
|
| System.Web.UI.WebControls.HyperLink | 12 Jun 2004 01:02 GMT | 2 |
In using a Hyperlink web control, by specifying the target to be '_blank', NavigateURL property will open the link in a new page. Is there a way to specify the dimensions on the new browser window in code? I am using VB.NET. I'd appreciate any help.
|