Custom Server Controls :: How To Pass Parameters Between Two User Controls

Aug 30, 2010

I would like to convert some aspx code in user controls. This would lead me to having a master user control that contains other controls inside.

The contained user controls have datasource with some control parameters that takes the value from a control present in the aspx (now) and that will then moved in the container user control.

which is the best way to handle a scenario like this?

View 4 Replies


Similar Messages:

Custom Server Controls :: Using Dynamic Parameters In Custom Controls?

Jan 6, 2010

I have a scenario where I've created a custom control that connects to a database and gets records from the last X number of months where X is any desired number. I use a "MinDate" parameter to determine how far back to look.

When I add my control to my page, how can I set the "MinDate" parameter to something like "DateTime.Today.AddMonths(-3)"? I've tried:

MinDate="<%= DateTime.Today.AddMonths(-3) %>"

View 4 Replies

Custom Server Controls :: Pass Javacript To Custom Control With ClientID?

Sep 17, 2010

I have a custom control that I have created. I want to be able to pass in a Javascript snippet for a callback function. I am able to do this by passing a string back. The problem is that in the Javascript, I need to reference another server control that is not related to my custom control. So, I need to be able to pass in the ClientID of that control for use in the Javascript. Here is a snippet of what I am trying to do:

[Code]....

Now, I realize that '<%= chkStartDate.ClientID %>' will not be parsed. But, I need it to be parsed so the OnClientOnChangeEvent property of my custom control can take any Javascript for use as a callback. In this instance, I need to pass in the ClientID of the control for the Javascript function to find the control to work with; and this seems to be the one issue that I don't know how to handle.

View 2 Replies

Custom Server Controls :: Pass A Variable Through A Parameter?

Jan 26, 2010

This may be elementary user control stuff, but I can't get it to work.

How can I pass the Membership.GetUser.UserName variable (or any variable) through a user control parameter at load time?

[Code]....

The only thing that I was able to do was to create the User Control object in the code behind and then add it to the page. Although that works, it doesn't seem like the correct way to program.

View 1 Replies

Custom Server Controls :: Can't Pass Data From Usercontrol To Page

Jan 25, 2011

I tried both, loading the usercontrol when needed and I also tried adding it directly into the aspx.

Nothing worked. With the second one (what's meant to be the easiest option) I tried with delegates and events (but can't access de usercontrol event from page) and tried with properties (I can access properties but they're always empty)

View 12 Replies

Custom Server Controls :: Custom User Control That Fills Itself?

Feb 15, 2010

I'm new to all of this, so go easy on me. This should be an easy one. I have created a custom SmartContentBlock user control for a CMS.The control works, but only if I invoke the Fill() function in the Page_init event in the codebehind of the ASPX page. My goal is to modify the class file so that the Fill() in the codebehind is no longer neccesary. So, for reference, here's the gist of the current situtation.Controls.cs

[Code]....

ASPX Page

[Code]....

View 3 Replies

Custom Server Controls : Want To Pass Control A Value To One Of Its Parameter Of Type DropDownList

Mar 4, 2011

I want to pass to my control a value to one of its parameter of type DropDownList. Something like:

<uc1:MyControl Id="01" runat="server" OtherControl="ddl1" />

Where "ddl1" is a DropDownList defined in the same page my control resides. How to create this kind of property?

View 2 Replies

Custom Server Controls :: Save User's Input In User Control?

Mar 28, 2011

I have a user control (ascx file) that contains an interface for users to change the data retrieved from the db. So, I am displaying data and most of this data can be edited by the user. When the user enters text into a textbox, and clicks "Save Changes", the value they typed in is lost and not persisted to the database. I realize now this is because the SaveChanges button does a postback, and the user control gets reloaded with its original valuesbefore the code within my SaveChanges button gets executed. I'm not sure if there are properties I need to set to save the input data, or if I need to write my own code to do it. What is the generally accepted method to do this? (Also, all of the controls in the ascx file are wrapped in an Update Panel.)

View 8 Replies

Custom Server Controls :: 2 Page Signup Form Using Multiple User Controls

Dec 29, 2010

I have a 2 page signup form, on each page the form fields are seperated into sections. Each section is a user control, and there are 2 controls on each page. My question is, how do I get the data from page A to B. I'll be using a webservice to insert the data into SQL so I'm not worried about that portion of the process.

using System;
using System.Collections.Generic;
using System.Configuration; [code]....

View 2 Replies

Custom Server Controls :: Loading Web User Controls Dynamically On Postback

Mar 2, 2010

First, I would like to apologize, the search on the site wasn't working, so I don't know if I'm missing an existing post or not.

I have a web page that uses a master page file. I am using a third party control from Component One(TabStrip), the tabs are rendered as links on the final page. When a tab(link) is clicked, I need to load the appropriate web user control associated with that tab. Each web user control has its own post backs and methods. I know that I can load the controls on the "SelectionChanged" event of the TabStrip control, but then any postback created by the web user control that is loaded causes the page to refresh and the control was never loaded in viewstate. So, I tried to put my procedure of loading the web user control into the page_init method. This would work, if I could read which link was clicked on from within the page_init method. I tried using a javascript function to run "onclick" of the tabs and within it setting the value of a hidden control. I have verified that the javascript works and that the hidden control's value is getting set correctly. When I get into the page_init method, the value of the hidden control is not readable.

I'm tying to understand the page lifecycle to the fullest, but I don't see what I'm missing here. I know that I need to load the web user controls in the page_init method in order to persist the page as a whole, but how can I get which tab(link) was clicked to know which control should be loaded?

View 5 Replies

Custom Server Controls :: The Template User Controls Are Not Working When Paging Is Enabled In GridView

Dec 2, 2010

Header controls like create ,delete are created by using templated user controls (ITemplate) .

The controls are working in all pages except the last page when paging is enabled in grid view.

View 5 Replies

Custom Server Controls :: Events Of Controls Of A User Control?

Dec 11, 2010

I have a user control with a textbox and a gridview. When data is entered into textbox it has to get data from the database and populate in the gridview. The grid view has add,edit and delete events.The user control is loaded dynamically multiple times on to the page.My issue is when i have 2 or more user controls and if textbox of usercontrol1 is changed, it reloads both the controls and fires the postback event of textbox twice each for the user control, where as it has to execute only once. due to which the data modifications in the grid are lost as it pulls back the data once again from the database.

View 3 Replies

Custom Server Controls :: Custom Control's Constructor / User To Set That variable In The Properties Window After They Drag The Control Onto A Form?

Mar 4, 2010

I have a custom control which inherit from the Table class and in the constructor, it takes a an integer as an argument. There is no empty constructor.

Is there a way for the user to set that variable in the properties window after they drag the control onto a form.

I know some .NET controls, you can set the source for the parameter to different things like another control's property, QueryString using just the properties window.

Right now, I have to create the control dynamically. I read the query string and then created the object.

View 1 Replies

Pass Parameters To User Control At Page_Load?

Jun 21, 2010

Basically I want to call a user control from a master page. However, I need to pass an object (a List of objects to be more specific), to the user control. I'm generating the list of objects in the Page_Load of the master page. Here's the line in my master page that calls the user control.

<cu:Eventlisting1 runat="server" id="eventListing1"></cu:Eventlisting1>

This user control has a parameter called CalendarItems that accepts the list of items. However, if I try to set this inside of the Page_Load method, my control executes before the Page_Load and throws an exception saying CalendarItems is null. Is there any way around this?

EDIT: I have a drop down list on this page that determines what the list of CalendarItems is so when I populate the CalendarItems list I need to be able to read the selected value from the drop down list.

View 2 Replies

Custom Server Controls :: User Template Control Or Custom Server Control?

Jul 22, 2010

I need to develop control (template or user) which must have subtags with some items.

For example :

<SomeControl runat="server" id="scTest">
<column1>TestColumn1</column1>
<column1>TestColumn1</column1>
<column1>TestColumn1</column1>
</SomeControl>

This control may contain some other web server controls such as GridView.I need explanation of experienced developers, how to do that - take me to the right way

View 3 Replies

Custom Server Controls :: Unable To Convert User Control To Custom Control

Oct 27, 2010

I have created a user control and am ready to convert it into a custom control. I am trying to follow:

[URL] the steps mentioned in the link.

I am not seeing Build / Publish Web Site option.

I am using VS 2008. I only see Publish User Control but it doesn't give all the settings mentioned below. When I do publish user control, it just copies the ascx file to the desired location. how can I convert the user control to custom control.

View 2 Replies

Custom Server Controls :: Want To Create User Control

Oct 30, 2010

I want to create user control that can be added on other site.

here is the scenario.In my web site reservations can be done for restaurants. I want to provide user interface for reservation in restaurant owner's web site. When user goes to restauarants site he can reserve the slot through my site.

View 2 Replies

Custom Server Controls :: Embedding Css - User Can't Use Styles

Nov 15, 2010

I've been trying to find a solution to compiling css and images into the dll file for distribution, but I haven't found anything good about it. The reason is pretty simple:

1. If the user doesn't use styles, it'll look like...manure ;)

2. If they don't use images, the shadowing effects will be gone

I will add features for changing the styles, but I would like to have a fall-back. If you don't have any ideas about the css, I can write it directly in style attributes instead of using classes, but classes are preferrable.

View 3 Replies

Custom Server Controls :: User Control Disappears ?

Dec 23, 2010

m trying to add custom control to my page dynamically.by this code,and it works fine.
[code]...

View 1 Replies

Custom Server Controls :: User Control Page C#?

Mar 25, 2011

i have a user control page and only have , which i have <div> and a gridview inside <div>how can i add a scroll bar in user control page?the code like below in aspx:<@regrister url="user control page" tagname="xx" tagprefix="aa"><div><aa: id="xx"></div> <--to embed user control page.

View 3 Replies

DataSource Controls :: Connecting Sql Server / To Read The Windows User Account  Name And Pass In The Connection

Apr 6, 2010

I would like to do a connection of asp.net page with Sql Server. Here I would like to read the Windows user account name and pass in the connection.The connection should be Windows authentication. IIS server and Sql server are installed in different machine. Here I am able to connect locally, When I am running from server, It takes windows account of Server.

so i can read local account(Where user is accessing the web application) and make windows authentication sql server connection.

View 3 Replies

DataSource Controls :: Pass Session Parameters To Sql?

May 2, 2010

How I can Pass session parameters to sqlDataSource. I do like this but it is not work:

[Code]....

The session name is :session["EmailAddress"]

View 2 Replies

Custom Server Controls :: Want To Pass An "CmdObject" Through DataListCommandEventArgs?

Jul 16, 2010

I have developed a user control consisting of Datalist that has a LinkButton in the

<item Template> ie

[Code]....

Now i want to pass an "CmdObject" through DataListCommandEventArgs

protected void userContents_ItemCommand(object source, DataListCommandEventArgs e)

View 5 Replies

Custom Server Controls :: Custom Composite Control With Custom Templated Child Controls?

Mar 22, 2011

I am trying to build a custom composite control, which allows me to add custom content to each child control. It's a similar concept to what you have with a GridView and TemplateColumn. The markup used to place the control on the page would end up being something like this:

[Code]....

I have the code below, which allows me to put that markup on the page without throwing any errors, and it renders all the correct HTML, except it doesn't render the contents of the ColumnTemplate. I have replaced the Render() code with a comment because it's quite long winded and doesn't add anything important here:

[Code]....

I have tried to follow examples on MSDN and other forums but I can't make this work. I think I'm missing the code to render the contents of the template, but I don't know how to hook that up.

View 1 Replies

Custom Server Controls :: Creating User Control Like Gridview?

Dec 31, 2010

i'm developing a webusercontrol, that has very properties, properties are of custome types (not primitive), so i want user can edit properties in grid property. i want something like gridview here is a portion of my code:

[Code]....

[Code]....

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved