all groups > asp.net building controls > february 2006
Filter by week: 1 2 3 4
HierarchicalDataSourceControl Class and System.StackOverflowExcept
Posted by Francis Reed at 2/28/2006 11:31:28 AM
Hi
When running the example code for the FileSystemDataSource which in found in
the HierarchicalDataSourceControl Class documentation, I get a
System.StackOverflowException. Can someone please help me solve this problem?
http://msdn2.microsoft.com/en-us/library/system.web.ui.hierarchicalda... more >>
Setting Assembly TagPrefix in 2005??
Posted by Arthur Dent at 2/27/2006 9:21:31 PM
Can anyone tell me what the equivalent in 2005 is for 2003's line
<Assembly: System.Web.UI.TagPrefix("Temporal.WEB.Controls", "twebc")>
in the AssemblyInfo file?
I have an assembly of my own custom webcontrols which i am trying to port to
2005, but cannot seem to find this piece of info.
T... more >>
autoscrolling in .net
Posted by AVL at 2/27/2006 3:40:26 AM
Hi,
I've a requirement in which I need to implement autoscrolling....
Is there any control in .net which supports this functionality/............
My display list(data) should be scrolling .............. more >>
Creating a reusable dropdownlist for use in formview
Posted by Rodrigo Juarez at 2/25/2006 1:32:49 AM
Hi
I need to create a dropdownlist for reusing in a lot of formviews, with
databinding.
If I create a user control the selectedvalue is not usable for databinding
in formview.
Thanks in advance
... more >>
Animated buttons control?
Posted by Ben Fidge at 2/24/2006 7:39:06 PM
Can anyone recommend any good controls to implement animated buttons. I want
something that can perform the following:
- Must initially display a static image
- When clicked the button must seamlessly display an animated GIF while
waiting for the postback to return
The idea is to provide ... more >>
How can I prevent SmartTag from showing?
Posted by amanda at 2/23/2006 6:35:04 PM
Hi,
I've a webcontrol which inherited from BaseValidator.
Under the .Net 2.0, such control has a default function----SmartTag,
which is new in 2.0.
But I do not need it.
How can I do ?
My ValidatorDesigner is inherited from ControlDesinger.
/// <summary>
/// Summary description for Valid... more >>
HtmlHead is not inheritable how can I prevent the <title> tag from rendering?
Posted by Alexander Walker at 2/23/2006 12:00:00 AM
Hello
I am trying to prevent the <title> tag from rendering in an HtmlHead control.
How can I do this?
I have been trying to replace it with a web user control that I have created
which renders the title tag and takes advantage of caching features
My main problem is that the HtmlHead co... more >>
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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
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 >>
-stmt mgmt issue
Posted by AVL at 2/12/2006 11:07:26 PM
Hi,
I need to maintain state of few variables on my page,,,
It's on the same page....
Which is better suited in this situation?
Session or viewstate.....
please help me out........... more >>
Using the Font property
Posted by rlrcstr NO[at]SPAM newsgroups.nospam at 2/10/2006 3:35:18 PM
In a custom control, inherited from WebControl, I get a Font property
automatically. What's it's purpose. When I render text within the control,
it's not rendered with the attributes of that font object. Do I have to
read the attributes of the font object and render each one within a font tag
... more >>
Raising a click event
Posted by rlrcstr NO[at]SPAM newsgroups.nospam at 2/10/2006 1:50:07 PM
I created a custom control - inheriting from WebControl.
How do I give this control a click event for the user of the control to put
some code behind? Thanks.
Jerry
... more >>
Click Event Not Firing
Posted by Hardin Brothers at 2/10/2006 8:18:00 AM
In Framework 1.1 (VS 2003, C#) I've written a server control that contains a
button. If I place the control on a page surface, it renders fine and the
button's click event fires, changing the visual state of the control. But
if I place the control inside the template of another server contro... more >>
Custom Script Editor how to
Posted by Bill Youngman at 2/9/2006 11:22:57 AM
I am writing a custom script editor for use in web application and I would
like to be able to have the text cursor be placed at the beginning of text
that the user is searching for. How do I do this?
Also, is there any way that I can highlight the word that they were
searching for?
TIA,
... more >>
Subject: Problem Extending ObjectDataSource and ObjectDataSourceVi
Posted by eacsub at 2/8/2006 10:41:28 AM
I have an extended version for both those classes. MyObjectDataSource
overrides the GetView(string) method to return the custum view. The problem
that the my costom view doesn't get it's properties intialized like the
"SelectMethod", "DeleteMethod". they all appear as empy strings. However the... more >>
getting data from parent site
Posted by Kaandy at 2/8/2006 4:02:27 AM
Hi,
when i create a new column in the document library with the column type
as "LookUp", can i able to refer the list in the parent site? Can anybody
help me how to do that
Kaandy... more >>
How do I use the URL picker?
Posted by rlrcstr NO[at]SPAM newsgroups.nospam at 2/6/2006 10:24:34 AM
I'm creating a custom web control and a few of the properties should be
image URLs. How do you get the system to present the URL picker as an
option when the user is setting the control's properties? (Like the
standard controls do for image URLs...) Thanks.
Jerry
... more >>
Printing in ASP.NET
Posted by JP SIngh at 2/6/2006 12:00:00 AM
Is it possible to send a file directly to printer in ASP.NET?
I have a page which display the list of files associated with the record
with hyperlinks to the files. I want to provide a link next to each file to
allow people to click the button and send the appriopriate file to the
printer.
... more >>
Can a Web Forms Control be Used in a Desktop App?
Posted by Greg at 2/4/2006 12:08:05 PM
Can a Web Forms Control be Used in a Desktop App?
Can it even be used on a Windows Form?
Are there any special needs on the desktop for running Web Forms e.g. is IIS
needed, or as long as client system has .NET Framework a Web Forms app will
run on it?
--
Greg McPherran
www.McPherran.... more >>
ObjectDataSource
Posted by Joey Chömpff at 2/1/2006 6:15:54 AM
LS,
Could somebody help me with finding information over building an
derived objectdatasource. I think that the design of this control isn't
good enough if you work with your own objectmodel and having
readonly properties.
I would appriciate if someone could give some information.
--
... more >>
|