all groups > asp.net building controls > march 2006 > threads for march 8 - 14, 2006
Filter by week: 1 2 3 4 5
using properties
Posted by Jon Paal at 3/14/2006 12:13:50 PM
the primary use of a custom control is achieved with :
"<cc1:myCustomControl id="CustomControl1" runat="server" />"
properties are assigned programatically with a call to "LoadProperties(CustomControl1)"
Sub LoadProperties(oThis)
othis.Chart_align = "center"
...
End Sub
an... more >>
adding a custom vb.net winform control in asp.net
Posted by ElCapitan at 3/14/2006 6:51:54 AM
greetings all,
I am new to adding controls to a webpage, i have created a control in
vb.net and build the solution, I then took the dll file and stuck it in
the root directory of the home page. I added this object tag to the
body of the page
<object id="simpleControl1"
classid="http:Window... more >>
Custom controls / Toolbox / Visual studio 2005
Posted by Nick Stansbury at 3/14/2006 12:00:00 AM
Hi,
Recently upgraded to VS 2005 from 2003. Started rebuilding an asp.net app
from scratch. Not using projects (not sure at this point whether I like or
hate this). I've finished redeveloping all of our custom controls (see below
for the declareation). Our custom controls are in .vb files in... more >>
Webcontrol nulls values?
Posted by DrBytes at 3/13/2006 1:32:28 AM
Guys,
I have a problem.
I have an ASCX I created with listbox on it. this ascx also exposes a
SortedList property called Values.
THis property is read on CreateChildControls in the ascx and populates the
listbox with it.
I set the the Values property of the ascx in the OnLoad of the hostin... more >>
Making table cells available at design time
Posted by Christophe Peillet at 3/10/2006 12:49:27 PM
I have several custom UI controls that are table-based, and I would like to
make some of the table cells available for users to edit at Design time, much
in the same way the panel control works, for example. (I want users to be
able to insert new controls, html code, etc.)
If someone can p... more >>
Can ActiveX controls be built with C#
Posted by Leslie at 3/10/2006 11:25:17 AM
I would like to build a control that can be deployed from a web site that
runs in IE. The component will have no user interface. It needs to collect
information from the local workstation and either drop the information in a
cookie which will be returned to the server or call the server direct... more >>
Determining the Browser and event.keyCode vs. event.which
Posted by Nathan Sokalski at 3/10/2006 12:38:44 AM
I am writing a piece of code for an ASP.NET function that generates an
onKeyPress JavaScript eventhandler that uses the event.keyCode / event.which
properties. I have two situations that I would appreciate any advice on:
1. I know that IE uses event.keyCode to get the key pressed. I have,
howe... more >>
|