Generate html table with merged cells
(2 messages)
Date: Tue, 24 Jul 2007 11:15:05 -0700
I need to dynamically construct a table in code (vb.net) that will
have merged cells. It should look something like this:
_____________
| | row 1 (contains an image control)
_____________
| ...
|
derived custom controls from Button or ImageButton
(2 messages)
Date: Tue, 24 Jul 2007 23:04:49 +0800
I want write a custom controls (Button or ImageButton derived)
and want set the "name" tag to my custom value
use this.Attributes["name"] = "MyNameValue";
or writer.AddAttribute(HtmlTextWriterAttribute.Name, "MyNameValue" ...
|
Asynchronus call to query in ASP.NET page
(1 messages)
Date: Tue, 24 Jul 2007 07:40:00 -0700
Hi All
I have a gridview and a reportviewer on my webpage where the reportviewer
queries (taking 1 min) run asynchronusly in Page_Load.
AddOnPreRenderCompleteAsync(new BeginEventHandler(BeginAsyncOperation),new
EndEventHandler(EndAsyncOperation ...
|
Gridview e.OldValues and e.NewValues are nothing
(3 messages)
Date: Tue, 24 Jul 2007 02:38:13 -0400
Hi,
I am using a gridview control in asp.net 2.0 and creating some dynamic
template fields in it. Whenever I am trying to get the e.NewValues in the
row_updating event , it is always nothing,
Is this a know issue? ...
|
Could not find file Error
(3 messages)
Date: Mon, 23 Jul 2007 10:30:51 -0700
Can anyone tell me why the below code returns error?
Exception Details: System.IO.FileNotFoundException: Could not find
file
Dim strLFolder As String = "c:\Temp\F Files"
Dim intClientID As Integer = 1221
...
|
Custom Web Control
(1 messages)
Date: Sun, 22 Jul 2007 12:48:39 -0700
I am trying to write a custom date control with 3 drop downs one each
for year, month, day. SelectedDate, MaximumDate, MinimumDate are
properties that the user can set on this control. How can I ensure:
1. The year in drop ...
|
Style not applied until refresh...?
(4 messages)
Date: Sat, 21 Jul 2007 20:56:58 -0400
Hi, I have a user control in which I set some style properties
programmatically, like so:
divMain.Style.Add("width", Me.PixelWidth.ToString & "px")
Dim iInnerWidth As Integer = Me.PixelWidth - 2
ddlCategory.Style.Add("width" ...
|
CreateUserWizard Control Question
(1 messages)
Date: Sat, 21 Jul 2007 16:59:43 -0500
Hi,
I have a CreateUserWizard control with an added step at the beginning which
is basically a place the user will enter a key that he will be provided with
in advance (so that only invited users can register).
What ...
|
How to form a method to change HTML Elemtn by reference?
(2 messages)
Date: Sat, 21 Jul 2007 06:59:51 -0700
Hello, thank you for taking the time to read this. I am totally
stumped on this one.
I have a ton of TD attributes that have to be changed based on the
data in the DB. All TD elements are ID and runat=server.
Changing ...
|
How to stream file of windows media player in asp.net
(2 messages)
Date: Fri, 20 Jul 2007 22:57:52 -0700
Hi,
I am developing an application in ASP.NET using c#.
I have embed windows media player into my website and play
media files.
When client is going to play Audio File it takes time for streaming,
I want the streaming ...
|
|
Designer Property Serialization -- Sycning inner properties to designer property window
(1 messages)
Date: Fri, 20 Jul 2007 17:58:29 -0700
Hi,
I am just getting started developing custom user controls, and I am
having issues keep the inner properties of nested controls in sync
with the properties in the designer window. When I change a property
of a nested ...
|
Outofmemoryexception
(2 messages)
Date: Fri, 20 Jul 2007 11:24:53 -0700
I am using Arraylist to populate a drop down
I get outofmemoryexception at this line
for (iYear = 0; iYear <= oYearsList.Count - 1; iYear++)
{
sHtml.Append("<option value='" + oYearsList.Add(iYear ...
|
Changing the color of a border in an HTML table
(2 messages)
Date: Fri, 20 Jul 2007 11:04:00 -0700
Environment: VS2005, sql server 2000, Win XP
I put runat=server on a regular HTML table. Then instead of setting the
style in the html I want to dynamically change the style of the html table
border color. We'll it won't ...
|
Adding and populating a custom property for a user control
(3 messages)
Date: Fri, 20 Jul 2007 10:48:04 -0700
I have built and used a custom control which works fine.
I now want to add a property that I can set from the various pages where I
use the control.
I have added the following property in the code behind file:
...
|
Adding and populating a custom property for a user control
(1 messages)
Date: Fri, 20 Jul 2007 10:46:07 -0700
I have built and used a custom control which works fine.
I now want to add a property that I can set from the various pages where I
use the control.
I have added the following property in the code behind file:
...
|
Image Button onkeypress
(1 messages)
Date: Fri, 20 Jul 2007 09:59:01 -0700
I know this has been beaten a hundred different ways, but I've tried
them all and I'm stuck. I have a web control on a web form. The web
control is for logging in and all it has are two textboxes (username
and password ...
|
Wizardd and ObjectDatasource Parameter Question
(1 messages)
Date: Thu, 19 Jul 2007 19:48:01 -0700
I have a wizard Control with a few steps. One of the steps needs to fill a
gridview. One of the parameters for the Gridview's objectdatasource needs to
come from a dropdownlistbox on the previous wizardstep. The controls ...
|
Custom Date Web Control
(1 messages)
Date: Thu, 19 Jul 2007 22:15:08 -0000
I need a simple Date Custom Web Control (NOT a user control) written
in .Net 2.0 C# :
UI:
Three Drop downs: Month, Day, Year
Properties
Date (datetime)
Month (int)
Day (int)
Year (int)
MinDate(datetime)
MaxDate(datetime ...
|
Custom Date Web Control
(4 messages)
Date: Thu, 19 Jul 2007 18:54:44 -0000
I am looking for a date custom web control.
The UI will have 3 drop down box. Each for day, month, year
The control will have the following Properties
Date (datetime)
Month (int)
Day (int)
Year (int)
MinDate(datetime ...
|
Drop Down List
(3 messages)
Date: Thu, 19 Jul 2007 11:30:45 +0700
Dear All;
i want to display data in dropdown list with extend alignment as follow:
ADB.............1 Project
WB.............12 Project
WFP.............5 Project
but if i concatenate string it display as follow:
ADB ...
|