WebUserControl and data binding
Fri, 09 Mar 2007 16:15:02 -0500
Hi all, sorry if this sort of thing has been asked and answered before
but I am scratching my head over this.
I have a WebUserControl with exposed public properties (that appear
correctly in the properties tab) but would like them to be "bindable"
when the control is used in something like a FormView thro ...
|
Dynamic Menu Style problems
Thu, 8 Mar 2007 05:26:47 -0800
Hi there,
I'm using ASP.NET 2.0 with VWD 2005
I created a master page with web sitemap
And attached Dynamic Menu
Now when I set all dynamic menu properties to BackColor = Transparent
Everything looks fine except the Dynamic Menu Style
It keep show white background even the back color set to transparent
...
|
TreeView in server control throws errors...
Wed, 7 Mar 2007 17:08:31 -0800
Hello All,
What is the proper way to add a TreeView, with child nodes, to a server
control?
I was getting two errors. The first was quickly resolved by setting the
SkipLinkText = String.Empty;
The second one, however, doesn't appear to be as straight forward. When you
envoke the RenderControl meth ...
|
Confused a bit...
Tue, 6 Mar 2007 16:23:04 -0600
I tried this out, I was hoping I could get another say. I
went to this video, and when I clicked at the very end, my cpu started freaking
out. It was actually pretty neat, but it didnt work the second time, can anyone
else tell me if my cpu is screwing up or what? Link : http://one.revver.com/watch/194543 http:// ...
|
LoadControl comilation problem.
Mon, 5 Mar 2007 15:41:02 -0800
Hello. I have some problem and really need a answer why it happens.
I have asp.net framework 2 site and I use 2 clusters (NLB). They both use
the same network path to source code, the same database, and the same IIS
settings on both.
I use the simplest type of deploying site – just update them in paths wh ...
|
Why can't user controls be compiled into DLL and shared with other web applications
Mon, 5 Mar 2007 14:10:48 -0000
Guys,
Does anyone know the technical reason why user controls couldn't be compiled
into an assembly and shared with other web applications.
If the ASP.NET compiler can compile the user control pages at runtime into
an assembly then why couldn't this be compiled and then shared with other
web applicatio ...
|
Decorating Derived Page Classes with Custom Attributes
Sat, 03 Mar 2007 07:55:34 -0800
I've created a couple of custom class attributes to decorate derived Page classes in my ASPNET application. To access them, I use
the following pattern:
[CustomAttribute(some stuff)]
public partial class DerivedPage : BasePage
{
}
public class BasePage : Page
{
public BasePage()
{
CustomAttribute ...
|
|
|
Custom control's events in master pages
Fri, 2 Mar 2007 14:47:31 -0800
I have designed and written a custom 'menu like' server control. The control
inherits from DataBoundControl and implements INamingContainer and
IPostBackEventHandler interfaces. The control uses only html mark-up as it’s
UI, i.e. tables, table rows and table cells, and no intrinsic html controls
such as in ...
|
FormView and inner control events
Fri, 2 Mar 2007 01:38:18 -0800
Hi to all!
I'm using a FormView control heavily customized and I need to enable some
inner textboxes when the user write something in another inner textbox. So I
need to use inner controls events but ... they seem not to work!
I wrote something like that:
<asp:FormView ID="fv" runat="server" AllowPaging ...
|
Nested propertiies not set at design time from properties window
Fri, 2 Mar 2007 04:00:29 -0500
Guess my other post was too long. Maybe this is more to the point.
Here is a composite control...can't get much simpler:
[ToolboxData("<{0}:TestControl runat=\"server\"></{0}:TestControl>")]
public class TestControl : CompositeControl
{
private TextBox tb = new TextBox();
[DesignerSerializationVisibili ...
|