| Thread | Last Post | Replies |
|
| How to Display an image, from a DB, into the Gridview (ASP.NET 2.0) | 30 Apr 2006 11:42 GMT | 2 |
I would like to know how do display an image into a Gridview (ASP.NET 2.0) taken directly from a DataBase, NOT using an URL, like described in this article: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/Gri dViewEx06.asp
|
| Toolboxbitmap Attribute for custom control | 29 Apr 2006 23:21 GMT | 1 |
THanks in advance to anyone who can help :) The only way I'm able to add my custom 16x16 toolbarbitmap image is by using the ToolbarBitmap constructor: ToolbarBitmap(//path to imagefilename)
|
| Accessing hidden controls on ascx page | 26 Apr 2006 23:37 GMT | 1 |
I have a hidden control <input id="FieldSortOrder" type="hidden" name="FieldSortOrder" runat="server"> in a ascx page. I want to store some value in this control in the code behind page.
|
| How to "Imports Resources" into compiled custom controls? | 26 Apr 2006 02:58 GMT | 1 |
I am building a custom control for a Web Application in ASP.NET 2.0 that makes use of the name space "Resources" for localization (app_globalresources) by adding this to the top of the customcontrol.vb file in the app_code directory:
|
| Iterate through page controls | 24 Apr 2006 09:09 GMT | 1 |
Hi friends, I need of some help, I have this code: For Each t As TextBox In Page.Controls ' here is the error
|
| Collections properties in custom controls | 21 Apr 2006 15:29 GMT | 3 |
Hi, How I can create collections properties in my custom controls in ASP.net (C#), I need create properties inside other propierties. Thanks! My english is bad, excuse me!
|
| VS 2005 & Web User Controls | 21 Apr 2006 14:53 GMT | 4 |
Hi. When you create a Web User Control using VS.NET 2005, it creates something that looks quite different from what was created in previous versions. Is there a documetn anywhere that expalins specifically how ASCXs have changed in this version?
|
| Reg: Showing default data in DropDownList | 21 Apr 2006 13:42 GMT | 1 |
I have a datagrid with 2 DropDownList controls...I am binding data to these controls on pageload event. I wanted to show some default text in these controls like "Select Drodown1" but this value is not present in dataset...
|
| converting varchar to double | 21 Apr 2006 09:29 GMT | 3 |
I try to cast/convert a varchar into a double but it doesn't work, i get an error that it isn't possible to convert. What can I do? The code is: whereSQL += "cast(bedrag as numeric(10,2)) > '" &
|
| User control init event in C# | 21 Apr 2006 05:34 GMT | 2 |
I’m using user controls in a web application, and i’m triyng to make use of its init event. This is the sample code I’m using in the user control using System;
|
| Custom DataSourceControl with parameter collection at design time | 20 Apr 2006 14:43 GMT | 2 |
I have a custom DataSourceControl which has a parameter collection defined as a property on the object. While everything works just fine I'm having problems with the design time implementation of the control. I'm getting an error: 'DocumentDataSource' could not be set on ...
|
| CompositeControl and Toolbox | 19 Apr 2006 22:32 GMT | 3 |
This has been asked repeatedly many times and no one has been able to answer it. Now, I have the problem too..... why are CompositeControls so hard to make show up in the Toolbox? Why do they show up sometimes and then disappear? What's magic combination of tricks need to happen ...
|
| ASP.Net 2.0: Help with ClientScriptManager | 19 Apr 2006 10:15 GMT | 1 |
I'm working on a custom control that needs to register client script to the page. string key = "ScriptKey"; string script = "<script language=\"javascript\"> alert('Hi'); </script>";
|
| problem whil adding user control dynamically multiple times | 18 Apr 2006 14:34 GMT | 1 |
I have two buttons add and save on my aspx page as and when i click on save button ,i want to load user control on form it works fine but when i click on add button then that previously loadded user contol goes away
|
| ASP.NET 2.0 - How to build a Monitoring Application | 18 Apr 2006 07:51 GMT | 2 |
Hello to everybody, I would like to know how to build an ASP.NET 2.0 Application that show me some data from a SQL Server Table and refresh it every one or two seconds ? With autorefresh ? May be it is not so elegant...
|