How do I control one control from another control?
I have a page page1.aspx which is within a master page.
On page I have a table with two cells. Within each cell I have placed two controls (ascx) that I have developed.
Now I'd like to be able to get these two controls to interact. One needs to update the other. One has some search criteria that the other one needs to update its gridview. One needs to make the other visible/not visible at certain times. Out of the box neither control can see each other at all.
Is there a good article or someplace I can find some information on how to do this?
AllAboutFocus.com. Information Technolo...
Custom Control within a Control Control
I am developing a custom controls that will render headers for different web sites. Within these controls, I want to place another custom control that will change the language. I created the language control and had it implement IPostBackDataHandler. This control works fine if I drag it on a new web form, but if I tell a header custom control to render it problems occur. The Language Selector custom control does not have a Page member anymore and the event handlers do not work. Does anyone have any experience with doing something similiar? Anyone have any suggestions?
Thanks,
...
Making the .NET calendar control as a floating control
Hi,
I need to implement the .NET calendar control as a floating control.
Is it possible to do that? If so, can you let me know how to do that?With Regards,Saravana Kumar M R
You could use the calendar extender control in the AJAX control toolkit. You can download the toolkit here, and there is a sample here.My Blog...
What is the real difference between Server Controls and .NET controls?
This was a class discussion question and I'd like to know, what exactly are the differences? Is there a clear answer?
.NET framework controls are server controls. The only difference that I can think of is that the .NET controls are part of the FCL (Framework Class Library).
HTH,RyanRyan OlshanASPInsider | Microsoft MVP, ASP.NEThttp://ryanolshan.comHow to ask a question...
Add .Net Control to Web Custom Control
I want to add .NET Control (like: TextBox, Button...) to Web Custom Control.How i can do it? Alphavn
That's called a composite control -- "Mark As Answer" if my reply helped you --
Hello Guys
What gunteman said, that is one approach and in most cases the right one.But its also possible to add child controls to a Control thats inherit from WebControl itself.
Be sure to implement INamingContainer to that inherited Control too, thats the important point of that approach.--Microsoft MVP - Visual Developer ASP / ASP.NET- http://www.aspnetzone.de/blogs/peterbuch...
Architecture: .Net Controls vs. Custom Controls
I'm interested in managing users. i.e. Logins and profiles, etc.My question is, should I be using things like the Login control or should I program these from scratch? I dont like the fact that .NET creates so many things for me. This level of abstraction terrifies me and it feels like I have no control over the code .I've done a few huge sites in Classic ASP (million-hits-per-day type sites) and I'm not sure how robust certain controls are, or when to use them.Is, for example, the Login control aimed at newbies to .NET? Should it be used for the larger projects with thousands of...
DW control in VB. NET custom controlHi
Just attempting to investigate some DW.NET aspects. In regards to building a
ancestor object with VB.NET, why is when I create a datawindowcontrol custom
control that any reference to it is like (assuming that u_dw is the name of
the DW control):
custom_control.u_dw.DatawindowObject = "myDW"
instead of simply: u_dw.DatawindowObject = "myDW"
If I create a .NET custom control with a button on it, I can directly
reference the button's methods and properties without having to qualify it
with the custom control's name.
When I was developing with po...
ajax.net controls used in custom composite controls?
I am creating an events calendar that uses the accordion to display the events for the selected day. The problem I'm having is that the accordion is not responding to any client side events. I would really like to find a good "How to" article for building composite controls that incorporate an ajax.net control like the accordion....
using a .Net Control as activex control in VCL formHi ,
We have a to integrate a simple .Dot CSharp control which needs to be integrated into bcb2010 VCL form as a control. We will place the control on the VCL form along with other VCL controls's.
I tried creating a simple .net control using a lable+textbox and trying to use in vcl form. I have made the assembly comvisible and generated tlb files and .bpl for the component. I could see the component in "ActiveX" tool palette. But when I drag the object onto VCL form and try to access its attributes I run into problems. I am not able to see .net control on the vcl at runti...
communication b/w html controls and .net server controls
I want to acceess .net server controls from cleint side java script
e.g
<asp:textbox id="text1" runat="server">
>/asp:textbox>
<input type="Text" id="text2">
<script language ="vbscript" >
public sub access()
text2.value=text1.text
end sub
</script>
if this is not possible then is its opposite possible? i.e.
to access html control for instance "Text1" in code-behind
pls help me out
Hi,
Use text1.ClientID Property to get client side id.
Generate Java...
How to validate controls on a .NET 2.0 Web user Control
Hi Guys,
(ASP.NET 2.0 / C#)
I've looked thorugh every post on validating web user controls (and know about Pter Blum's Professional Validation and More package) - but can't seem to get my head around whre to start.
I have a web user control, called wucICL.ascx on a we page called AddEditInvestment.aspx. I would like to validate a couple of DropDownLists (ddlAccounts and ddlContacts) when the Insert and Update buttons are clicked on the AddEdit Investment page.
The other controls on the AddEditInvestments page belong to a validation group called All Validators and the DropDownL...
User Control VB.Net x Web Custom Control
I was thinking in create a user control in VB.Net, and use it in a Asp.Net as possible?
So I thought about it is gonna be better than make a Web Custom Control, so i thought again, nope... But i need to know better because a don't have a progress bar in asp.net for example....
Could Somebody tell me about???
in a reallity i know the asnwer but i would like to explain by myself...
Thank's
Antonio...
How do you control the placement of controls in a user define control
I have a user define control. I put the control on the (C# Visual Studio 2008) page where I want them. When I run the program, the controls are all over the page. How do I place them where they do not move form where I put them?
You'll need to study the HTML output and see what it's producing, then start to look at how to do an HTML layout.
hi,
there are absolute and Relative position in html. I guess you must use relative position. For example, at design-time, you place a TextBox below an Image, at run-time, no matter what size is the image, the TextBox is alway bel...
Trying to load a control into a control from another control
Exactly as the subject states, I'm trying to load a control into another control from a control loaded into a page, I keep getting this error from the code I have below. I've also tried the findcontrol but it keeps coming up null.
(67): 'System.Web.UI.UserControl' denotes a 'class' where a 'variable' was expected
UserControl ut = ((webcontrols.BrowseItems)UserControl).LoadControl("BrowseItems");
((webcontrols.BrowseItems)UserControl).pnl_browse_main.Controls.Add(ut);
This is how we Load User controls into a content place holder.
try
{
UserCont...