0
votes
2answers
22 views

asp.net user control is not displaying: Unrecognized namespace

This is how a register the control on the page: <%@ Register TagPrefix="uc" TagName="Pcp" Src="../../Controls/ClientPayement.ascx" %> And this is how I use it: <uc1:Pcp ID = ...
1
vote
2answers
22 views

Can I use User Controls in MVC 4 aspx View Engine?

I have a mature open source User controls used in my project for control panel for navigation. However, I am now on a new project using MVC 4. I noticed there is also aspx view engine provided, can I ...
0
votes
1answer
30 views

Retrieving html content of an aspx from the codebehind of a custom control

I have 2 files, Test.aspx and MyControl.ascx. In Test.aspx's html: <MyControl> <MyTemplate> <div>sample text, other controls</div> </MyTemplate> ...
0
votes
1answer
23 views

Working with ListBox elements in a user control

I have a user control (ucMarket) which contains (for the purpose of simplicity) two controls: a ListBox (ucListBox) and a Label (ucLabel). I need to create multiple instances of that user control on ...
1
vote
0answers
8 views

Access to PartialCachingControl.CachedControl before Add it

I have some User Controls loaded dynamically, this is my implementation: public class Form : UserControl { public int ID { get; set; } // other props also } public class ...
-1
votes
1answer
11 views

Fix some controls inside when UserControl has scroll

I need to prevent scrolling entire UserControl. Instead I need to fix TextBox and Button at top but scroll GridView. Now it's scrolling entire user control.
0
votes
1answer
29 views

ASP.NET USERCONTROL WITH UPDATE PANEL INSIDE PAGE UPDATE PANEL

I have a master page with the Scrip manager. Have one page that use the master page and inside of this page i have an updatepanel. Inside this update panel i call a UserControl that have inside other ...
-2
votes
3answers
37 views

page get refresh evenif usercontrol validation is false

I have usercontrol in which I have written Custom-validation which checks whether the entered data in textbox is correct Location or not.On button click click I have checked (page.IsValid) bit, ...
0
votes
1answer
19 views

User Control's dropdownlist select from added page with javascript

i want user control's dropdownlist selected item from page. when i try to get dropdownlist id it doesn't return correct id. Have you any idea about what i can get dropdownlist id? var e = ...
1
vote
1answer
40 views

Registering a user control always postback hen the form loaded

Hi all I have created a user control and registered it in web.config with some extension and calling it on the page where ever required. When I use that when ever the page get loaded the user control ...
0
votes
4answers
25 views

User control not displayed after postback

I have a home.aspx page, where i have two panel. In first panel I have dynamically bound a User Control (for displaying meiny at left side) and in second I have displayed pages. I bound user control ...
0
votes
1answer
22 views

Inlining a Public Variable in a User Control

I have a user control with a variable that I am trying to display inline in the Aspx page, but it always shows as empty. I've done this in other user controls and I'm not sure why it isn't working. ...
0
votes
1answer
25 views

User control property fails on set

I have a user control on a webform. I have public properties backed by viewstate on the user control. In the code-behind of the webform I attempt to set the public properties. When I debug through the ...
-1
votes
2answers
48 views

ASP Button Event not firing into UserControl UpdatePanel

I have a page with an UpdatePanel that calls a UserControl with another UpdatePanel. The LinkButton event into the user control UpdatePanel is not firing. <asp:UpdatePanel ID="updPost" ...
0
votes
1answer
45 views

Failed to get the values of dynamically added user controls in asp.net

This is in my user control <div class=" row-fluid"> <div class="span4" style="overflow: hidden;"> <asp:DropDownList ID="ddlAccountName" runat="server" ...
0
votes
0answers
12 views

Page ValidationSummary include UserControl validators

I'm facing something 'fool', but i'm not sure the way to get this to work. I got a page ASP.NET WebForm, this page has a ValidationSummary and also has 2 UserControls. Theses UCs contains fields ...
0
votes
2answers
29 views

Updating one UpdatePanel from 2nd UpdatePanel

Is this a known behavior? and if it is how do I make it work? I have 2 update panels. Each one has a DropDownList control inside of it. I have 1 button that sets-up (binds) the first DropDownList. ...
0
votes
0answers
22 views

Adding user control into listview dynamically ruins format

i am trying to add a user control into specific place in listview(under the row where that button is) on button click. It works fine but the problem is all rows under this added control are not ...
0
votes
1answer
34 views

C# Set Focus To 3rd Party Controls

I have a 3rd party drop down treeview in my asp.net C# code <ct:ASDropDownTreeView ID="astvMyTree" runat="server"... /> I'd like to set focus on it in the code behind. Obviously the C# ...
0
votes
1answer
58 views

Sliding (or moving) controls in ASP.NET with just javascript

Because of how my page is set up, I can not send postBack events and reload the page with controls in new positions. Therefore, I need to move controls around using javascript. If I were to have 3 ...
0
votes
0answers
20 views

Nested control and caching

I have two nested controls. I want to cache the control on the outside and not cache the control on the inside. On the outer control I have set cache for 1800 seconds <%@ OutputCache ...
0
votes
2answers
96 views

Use Decorator Pattern for asp.net controls

I've created some custom textboxes which are inherited from textbox. For the next step I want to register javascript with a wrapper. Decorator pattern allow me to do if only I can inherit it from ...
1
vote
1answer
34 views

Httpexception The Controls collection cannot be modified because the control contains code blocks

I try to add a user control by ajax but I have The same problem of This One, and the suggested solution is Remove <%= From head of page, but my master page is: As you see there is not any <%= ...
2
votes
1answer
125 views

UserControl Viewstate loses all values after postback

I have a user control on a page that needs to persist some state in viewstate. Whenever a postback happens the entries in the viewstate get set to null. Page <%@ Page Title="" Language="C#" ...
0
votes
0answers
14 views

asp.net webforms + MVP

I'm new with MVP in webforms. I have a page with 3 web user controls inside. Web User Control 1, will display Web User Control 2. and Web User Control 2, will display Web User Control 3. Each Web ...
0
votes
1answer
14 views

Getting error when trying to implement CustomeUserControl

Okay im trying to create a custom user control in asp.net web forms however am getting the following error message: Description: An error occurred during the parsing of a resource required to ...
0
votes
1answer
60 views

how to set Key-value pair on .CS side?

I have found one kind of solution to use key-value but the problem is that when I use it on .Cs like MyUserControl1.Param.Key = "Area"; MyUserControl1.Param.Value = Area Its not allowing me to do ...
1
vote
2answers
62 views

User Control button event not firing

I feel a bit stupid but I can't get my button to fire within my User Control. I have created the user control with the button and I have added the event handler in it's code behind. This user control ...
0
votes
0answers
26 views

Buttons in User Control are being disabled when using more than one time

I had an user control, which I Need to use twice in an aspx page inside the tab container. But when i'm using the same user control with the different id for the second time in the different tab ...
0
votes
2answers
83 views

Get the nested controls in asp.net

I have a Parent User Control in which i have registered a Child UserControl. I want to access the controls present in the child usercontrol in my aspx page that I have inherited from a Master page. ...
0
votes
1answer
65 views

ASP.NET Get UserControl Custom Event On Parent Page VB

I created a custom event to fire when a button is clicked on my usercontrol. I want to capture this event on my parent aspx page. I've tried numerous methods from searching the web, but none seem to ...
2
votes
1answer
61 views

How to call User Control from one of the Javascript function?

I am using High-chart where in,a Graph is plot with different points. When I click on a point, I am supposed to call a user-control ? How shall I call a user control? Below is the function of ...
0
votes
2answers
40 views

Add meta tags in User control

How to add meta tags in User control??? I want to add rel="nofollow" attribute to all links in user control. How to add rel attribute to all links. Please help. Thanks in advance
3
votes
1answer
38 views

Custom Controls within Panels within aspx pages. ASP.NET

Long time listener, first time caller! I have an ASXP page that has a panel. When I click a button on the master ASPX page some code is run that loads a custom ascx control into the panel. When the ...
0
votes
0answers
44 views

Asynchronous Web site

I have a website that has 8 web parts and a user control. The page takes a really long time to load (>10s). The problem manly is the user control. What is the best choice to make this web ...
0
votes
0answers
73 views

Building Nested .Net Usercontrols causes Page_LoadComplete to be skipped

I have a UserControl that contains a method that in turn dynamically creates several Sub-UserControls within. (I am using .Net 4.5 with Visual Studio 2010 creating a Web Forms application.) The ...
0
votes
1answer
68 views

send custom parameters to user control ascx

I need to use user controls (.ascx) on a page, it's a related post user control based in 2 parameters: 1. Current post 2. Relation type the page needs to have 3 different instances of this ...
0
votes
0answers
23 views

Add functionalities of a calendar control

I have to create a calendar in which several functionalities have to be added. Ex:A Button named "Signin" has to be added to every day of the month. Is it possible ? If it is not then what are the ...
-1
votes
1answer
42 views

Load user control when document ready?

I have a web page that has a user control in it and it loads a tree in the page. The problem is, that since the user control is loading at the same time the page is loading the page is really slow. ...
1
vote
1answer
116 views

Edit, Insert, Update mode for ASP.NET user control

I am looking for the best way to template a user control, so that when I specify a mode say readonly, edit, update, insert then the user control changes its mode correspondingly. I have identified ...
4
votes
2answers
77 views

LoadControl, usercontrol in WebMethod

I am trying to send an email through a WebMethod Below is the code I typically use on a regular post back [WebMethod] public static void SendEmail(string name, string phone, string emailaddress, ...
1
vote
1answer
51 views

How to validate gridview for emptiness through the custom validator?

How to validate the gridview for emptiness through the custom validator : <asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="!!! " ...
1
vote
0answers
69 views

How to validate a user control loaded in the page programatically?

I want to ask how to validate client side and server side in the following case : I have a web page which i load a user control in programatically like this : in the page_load : if ...
0
votes
1answer
111 views

ASP.NET updatepanel conflict with JavaScript in dynamic user control

In the user control user_control.ascx file I have <script language="javascript" type="text/javascript"> new JSobjectMaker({ id: "<%=panel.ClientID %>", // ... ...
0
votes
0answers
36 views

User Control Caching and System.NullReferenceException

I am trying to do the fragment caching by using the Asp.Net User Control called InterviewOutcome1 within the page. I added the code at the top of the control: <%@ OutputCache Duration="300" ...
0
votes
0answers
61 views

Create ASP.NET UserControl that implements ITemplate

I'm attempting to use a UserControl as an ITemplate instance that can be passed into a Login control's LayoutTemplate property. However, I keep getting an HttpException at runtime: "LayoutTemplate ...
0
votes
0answers
36 views

onClick doesn't fire when rel attribute is present

The problem I have is driving me crazy. I have a modal where the Users adds something to the DB. After the modal's Save button is clicked the GridView on the Page should update. The problem is that ...
2
votes
1answer
69 views

Loading UserControl via AJAX, and posting back to the server

Summary Is it possible to dynamically download the contents of a UserControl via AJAX, insert that into the HTML, post-back the page to the server and for the server to be able to process the ...
0
votes
2answers
112 views

UserControl Click event not firing

Hi this is my aspx page loading some values to the user control protected void Page_Load(object sender, EventArgs e) { } this is the usercontrol where i am loading and sending the ...
2
votes
3answers
190 views

asp.net usercontrol won't fire javascript inside updatepanel

I've seen similar issues to this and answers but none seem to fix the issue. I have a user control inside an update panel. Inside my user control I output javascript. The javascript will not fire ...

1 2 3 4 5 41