all groups > asp.net building controls > february 2006 > threads for february 15 - 21, 2006
Filter by week: 1 2 3 4
Setting web custom control properties at design time
Posted by N Kumar at 2/21/2006 4:36:05 AM
I am developing a Web custom control whose properties (such as text) I would
like to map to other control properties (such as textbox1.text) or variables
of the web form at design time. Is this possible?
--
NK... more >>
sorting xml data in server control
Posted by Jon Paal at 2/20/2006 11:54:19 PM
I am passing an xml data file to a server control and need to sort the data. The data has three levels(tables).
What is the recommended approach to do the sorting ?
(using vb.net and asp.net 2.0)
... more >>
Accessing Textbox Text After Postback in Dynamic Control
Posted by Elroyskimms at 2/20/2006 9:15:28 AM
I have an aspx page, which loads a custom usercontrol (UCtrlA). UCtrlA
has a drop down list, and depending on what is selected in UCtrlA's
drop down list ("Create New" or "Edit Existing"), another usercontrol
is added (dynamically) to UCtrlA through LoadControl (UCtrlNew or
UCtrlEdit).
UCtrlN... more >>
Looking for a book on writing ASP.NET Controls with VB.NET
Posted by Nathan Sokalski at 2/18/2006 9:42:50 PM
I am an ASP.NET developer who would like to start learning about writing
ASP.NET custom controls using VB.NET. I already have a reasonable amount of
knowledge with making ASP.NET pages, and am looking for a book specifically
on writing controls. Here are some things I would like the book to ta... more >>
Converting the time from one timezone to another
Posted by Nathan Sokalski at 2/18/2006 2:19:49 AM
I asked a question about a week ago about how to get my local time, since my
application is running on a server halfway around the world. I have
determined that my code would look something like this:
Dim servertime As Date = Date.Now
Dim utctime As Date = servertime.ToUniversalTime()
D... more >>
Image Rollovers with the Hyperlink Control
Posted by Nathan Sokalski at 2/17/2006 8:28:53 PM
I have several System.Web.UI.WebControls.HyperLink Controls which I want to
display as rollover images. I know how to make these manually using the <a>
and <img> tags or the <a> tag and a System.Web.UI.WebControls.Image Control
or a HyperLink and Image Controls, but the onMouseOver and onMouse... more >>
VS 2005 intellisense for complex properties in the XML/HTML designer
Posted by Adam Tibi at 2/17/2006 12:00:00 AM
Hi,
I am using a web custom control with Visual Studio 2005 and I have a
property called :
[Category("Controls")]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
[NotifyParentProperty(true)]
[PersistenceMode(PersistenceMode.InnerProperty)]
public DropDownList Dr... more >>
MS_VIRTUAL_LIST_VIEW_CE_1.0 undocumented ?
Posted by palos at 2/16/2006 11:12:27 PM
Hello
I'd like to know if microsoft provides a documentation or code source
concerning this class used by Smartphone under window ce . The only thing i
want is to get items text from applications (developping useful interface for
blind people)
thanks for your help
--
****************... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How can I create a HTMLTable class from and HTML string.
Posted by chambersdon NO[at]SPAM hotmail.com at 2/16/2006 6:59:34 AM
I have an XMLReader loaded the HTML from a web page. I want to pull a
Table out of this XMLReader and use it to create an
HTMLControls.HTMLTable object.
How can I do this?
I should be able to do it without parsing the sting and explicitly
creating every row and column. This should work as i... more >>
|