| Thread | Last Post | Replies |
|
| Class Library | 22 Jun 2007 08:30 GMT | 1 |
I have been working on a project which has the following namespaces: bNET bNET.Blogger bNET.FAQ
|
| extra files on server | 22 Jun 2007 08:23 GMT | 1 |
Hi have a .net web application using crystal reports. I ended up exporting the reports to the server since I needed to dynamically change the default name of each. Anyhow just wondering if there is any automatic cleanup procedure I could impliment to delete files that are a ...
|
| conversion problem | 22 Jun 2007 08:14 GMT | 2 |
i want to change the forecolor of a label by choosing the color in a dropdownlist like this: <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem Text="red" Value="Drawing.Color.red"></asp:ListItem>
|
| Can Web App and Winform both access an assembly in the GAC? | 22 Jun 2007 07:36 GMT | 14 |
[VS 2005, Web Application Projects, VB.Net, XP Pro SP2] I have created a solution which has both a web UI and a winform UI, the latter is just for administrators. The Web UI (a Web Application Project) and the winform project both reference the same BLL in a separate assembly,
|
| Dynamic Checkbox | 22 Jun 2007 02:40 GMT | 3 |
I am having a problem about the dynamic checkbox Private Sub Page_Load Me.NumberOfChkControls = 0 Dim cbCheckBox As New CheckBox
|
| using an app.config of a referenced project | 22 Jun 2007 02:14 GMT | 6 |
I cannot get this to work. I added an app.config to a project i reference from my web application project (vs 05) but can see no way to access the settings within it. the other thing is that I expected this config file (.dll.config) to get put
|
| The URI prefix is not recognized. | 22 Jun 2007 00:53 GMT | 2 |
I am trying to get a response from a mms:// address. I am using this: Dim wr As HttpWebRequest = WebRequest.Create("mms://<my mms address>>") Dim re As HttpWebResponse = wr.GetResponse() I get an error:
|
| Handling events of controls created at runtime | 22 Jun 2007 00:23 GMT | 1 |
Subject: Handling events of controls created at runtime I need to render some buttons at runtime based on a database, tie events to them, and handle the events when they fire. In Page_Load I create the controls (for example a delete-button), add them
|
| Postbacks caused by the Calendar control | 22 Jun 2007 00:16 GMT | 1 |
As we all know, the Calendar control causes postbacks that we often do not want. This will obviously cause the Page's Load event to be triggered. I have code in my Load event that I want executed under all the other scenarios that might cause postbacks, but now when the user is ...
|
| Could some one help with this error on page | 22 Jun 2007 00:08 GMT | 9 |
I am using ASP.NET 2.0 and Master Pages,etc. I am NOT using AJAX. I don't see the problem on my local server, only when I publish it to the web. Problem happens on a page Where entry into a textbox causes a post back. When I type inside the textbox, I get the exclaimation and ...
|
| uploading / downloading protected files in ASP.NET | 21 Jun 2007 23:30 GMT | 3 |
I have a web application where the admin wants to be able to upload arbitrary files on an admin page... and then have them accessible for certain users. Easy enough eh? The difficulty I'm having is serving up these files in a secure AND
|
| IIS 6.0 ASP.NET 2.0 apps migrated to IIS 7 == "This web site is using .NET 1.1" | 21 Jun 2007 23:09 GMT | 3 |
I've migrated my development workstation from 32-bit Windows Server 2003 to Windows Vista Ultimate x64. I added my .NET web applications under development to IIS. I configured the apps to use a custom App Pool based on the Classic AppPool which is based on .NET 2.0.
|
| Checkbox and Gridview | 21 Jun 2007 22:45 GMT | 3 |
I have a gridview that contains a checkbox for each row and in each row, one of the fields is an asp:HyperLinkField. What I am trying to do is allow a user to click the link and have all records in the same group be selected by setting the checkbox's to
|
| Authentication | 21 Jun 2007 22:33 GMT | 1 |
I created a custom login form where the authentication is made on the button click as follows: If FormsAuthentication.Authenticate(username, password) Then FormsAuthentication.RedirectFromLoginPage(username, False)
|
| Help with Dropdownlist Can't add List Items | 21 Jun 2007 21:51 GMT | 1 |
I have a dropdownlist in my aspx page: <asp:DropDownList ID="DDLProjects" runat="server"><asp:ListItem Text ="TEST9" Value ="TEST9"/></asp:DropDownList> Then in my Page_Load I have:
|