Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
197 views

ASP.NET error: The page Y.ascx cannot use the user control X.ascx

I am getting the error below when trying to build the web site project in Visual Studio 2010: The page '/WebSite/controls/C2.ascx' cannot use the user control '/WebSite/controls/C1.ascx', because it ...
3
votes
2answers
678 views

How to hide property of ASP.NET custom control in aspx page?

I'm writing ASP.NET custom control, and I want it to have a few properties which should be visible only from code behind during run-time - I mean, these properties should not be visible both in a ...
2
votes
4answers
67 views

Get variable value from code behind and use in aspx page control

I got a web user control where I have controls that needs to be fed with some data from variables or properties from the underlying page. <%@ Control Language="C#" AutoEventWireup="False" ...
2
votes
2answers
639 views

How to create redistributable user control in DLL form with embedded images, javascripts, style sheets?

I've developed a most reusable ASP.Net WebUserControl for our company's web applications. I'm now going to make it as a redistributable DLL according to this msdn topic. Since the WebUserControl comes ...
2
votes
1answer
85 views

Optimal object to return from this method asp.net csharp

Having a checkedboxlist databound with encrypted listitem value, i had written a method to return a array holding respective checked items on postback. Signature of which would be similar to below ...
2
votes
2answers
719 views

ASP.NET User Control Inheriting from User Control Generates Null Reference

This must be a common problem. User control A has a TextBox T. User control B inherits from user control A. User control B is placed onto page P. During the Page_Load event of page P, if you ...
2
votes
1answer
75 views

how to validate only some of the elements in web page and not the others?

I programmed a web user control that basically lets the user choose whether she is a registered member or unregistered member, and to fill fields accordingly, i.e., if the user is member she is asked ...
2
votes
2answers
519 views

Problems with UserControl and Inner Properties

I am trying to develop a control that'll allow the developer to populate a collection through markup (e.g. Properties decorated with the attribute PersistenceMode(PersistenceMode.InnerProperty). I ...
2
votes
5answers
289 views

Temporary file contains reference to constructor with no arguments when it shouldn't

I have some WebUserControls that take a parameter to determine how they initialize themselves. However, when I compile the page I get the error 'ControlName' does not contain a constructor that ...
1
vote
1answer
42 views

how to Manage UserControl dynamically on a page…?

my scenerio is like this, i have to make a admin page ( header section ) in which i have to select single or multiple User Control from my dropdownlist .... which will be added in the page ...
1
vote
2answers
46 views

findcontrol in .cs class from webcontrol

I have some webusercontrols ".ascx" and want place some code into function class in App_Code folder, however when I try this code I keep getting "Object reference not set to an instance of an object." ...
1
vote
3answers
292 views

ASP.Net Web User Control methods and events not available in code-behind of host page

I needed a validation tool that could be reused in multiple projects, so I decided to make it a Web User Control. Below are the steps I took to set it up: Created a new web project and added my Web ...
1
vote
3answers
499 views

how to add user control multiple times in runtime on a webpage in ASP.NET

i'm having one user control in asp.net ,i just want to add the user control multiple times in a single web page in runtime in a separate table. How to do this? thanks
1
vote
3answers
254 views

Web user control set default value

How can I set the default value of Text to be "abc"? public enum MessageType { Good, Bad } public partial class Message : System.Web.UI.UserControl { public bool Visible { get; set; } ...
1
vote
0answers
199 views

Strange behavior in ASP.net regarding WebControl vs UserControl ViewState

Ok, I've solved my problem but I don't know why one type of control works and another doesn't. The scenario: I'm working on a custom wizard style page design that was originally done completely with ...
1
vote
2answers
1k views

C# asp.net Button_Click event handler not working

I have a webusercontrol with a few controls on it like some labels,a textbox and eventually a button. The purpose of this control is to add it to my main page in a placeholder every time I click on ...
1
vote
0answers
325 views

UserControl in repeater - Child DataBind() being called before repeater OnItemDataBound

I am attempting to databind a user control (B) inside a repeater (R) that is itself contained within a user control (A). Page calls A.DataBind A.OnInit attaches a method to R.OnItemDataBound ...
1
vote
3answers
885 views

ASP.Net c# - How do I instantiate an instance of a WebUserControl from within a App_Code class?

Aloha, I have a custom control that I need to instantiate from within a class and add to a page. My class has a function that I pass the Page to so i have access to the controls on the page. I'm ...
1
vote
3answers
3k views

how to find user control's id in aspx page

I have an aspx web application in which 1 aspx page and 1 web user controls exist. I added 4 instances of the user control in aspx page. There is a remove button in user control which is used to ...
1
vote
1answer
170 views

How do I combine Script# and Web Controls?

I currently have a Web Application project in VS2010. Each control (in *.ascx files) is contained in it's own separate folder along with the web services used by that control (in *.asmx files) and ...
1
vote
1answer
738 views

Calling jquery function from ascx not working

I'm having a problem with the following situation. I have an ascx which contains a submit button for a search criteria and I am trying to call a validation function in a js file I've used throughout ...
1
vote
2answers
736 views

How do I stop execution going into a UserControls PageLoad Method?

I have a MasterPage, with my Usercontrol inside a div. I can set visible=false to the UserControl and to the containing div, and this works fine. But the Page_Load of the UserControl is always hit. ...
1
vote
4answers
4k views

External JS file in web user control?

In a html page we use the head tag to add reference to our external .js files .. we can also include script tags in the body .. But how do we include our external .js file in a web user control? ...
0
votes
1answer
28 views

What is the naming convention to name .net web user control? [closed]

I've always named my user controls XXXControl.ascx, but today I saw another experienced developer use "UCXXX.ascx"...I think the "UCXXX" approach is more consistent with naming Sprocs (UP_XXX, for ...
0
votes
1answer
40 views

Programmatically add an object of web user control into another user control

i have a web form in to which i load a web user control(A) an when a button on control A is clicked it loads an array of another web user control named as infobox when i add the user control in to ...
0
votes
0answers
26 views

Event Bubble Down to Page from WebUserControl

Two pages I am working with. Default.aspx Includes: Web User Control (seen Below) Gridview WebControlExample.ascx = webctl contains datalist of checkbox controls My question is how ...
0
votes
1answer
25 views

How to pass values down through nested WebUserControls?

I'm trying to pass a value to a WebUserControl, and then onwards to a second nested WebUsercontrol. The first Control can get the value without any problems, and in debug mode it seems like the value ...
0
votes
1answer
59 views

Passing a web control reference to a User Control base class

I created several user controls - most containing a single web control (text box, drop down, radio button etc) - along with one or more validation controls. The point being to combine control and ...
0
votes
4answers
82 views

Web User Control postback Issues

I am new to ASP.net thing, and i have some question regarding postback. I have a Senario like this: 1) I have a grid on web with a panel inside. 2) I "Insert" the panel with a Web User Control by ...
0
votes
3answers
81 views

Visual Studio User Control ASP, C#, Code Behind issue

Okay this is probably a shot in the dark as it would be very difficult to guess what is going on here. But I am running out of options here. So I have this code behind for a page that a user is able ...
0
votes
1answer
79 views

Webusercontrol is inaccessible due to its protection level

Compiler Error Message: CS0122: 'Controls_Arcade_StarDisplay.Stars' is inaccessible due to its protection level I've checked other SO threads but can't make much sense of them. This control is ...
0
votes
1answer
35 views

Web User Control Properties

I know this is somewhat of a beginner question but I can't remember how to do this. I have a web user control and it inherits from an interface with a single property. So the user control looks like ...
0
votes
0answers
116 views

Extender controls may not be registered after PreRender. - AGAIN

OK. I know that this problem has been asked lot of times before but I didn't find any good solution. I have this situation... I have a Master Page where I am loading a Web user control ...
0
votes
2answers
41 views

Coverting a UserControl to WebUserControl in Asp.Net

I would like to know is there a possibility to convert a winforms usercontrol to web user control so that I need to use that control in my webpage. If it is possible how do I need to start?And Can ...
0
votes
1answer
116 views

Disable controls in repeater from page to web user control

I have a usercontrol in which I have repeater control and inside this repeater control I have two image button. Now, I am calling this web user control in a page, I want to set visibility false for ...
0
votes
0answers
58 views

jQuery +ASP .NET user controls

Tech used: ASP. NET with C# code behind jQuery 1.6.2 Context: I have a custom ASP. NET user control with multiple div compartments used to house information.As a project requirement I need to ...
0
votes
3answers
121 views

how to add a reference to the master page script manager, from the user control?

I have a ScriptManager which is added to my MasterPage; <telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnablePageMethods="true" /> I have a Web User Control which is placed ...
0
votes
1answer
84 views

Can't FindControl when RenderControl ascx in RenderBeginTag while overriding Panel

I'm creating a container using Panel control as follows: public class CustomContainer : Panel { public override void RenderBeginTag(HtmlTextWriter writer) { var control this.Page.LoadControl("web ...
0
votes
0answers
76 views

Adding a User Control in a Web Part Problem

Well, everybody, the problem in short occurs when I add a userControl with a Label (Called: Label1) inside to a Web-Part in SharePoint 2010 this way: protected override void CreateChildControls() { ...
0
votes
3answers
72 views

Is there any alternate way for CheckBox onClick Event in JavaScript?

I have written one JavaScript function which would rise the event when the User clicks the CheckBox. But I have already written some other function which too has to rise when the user clicks the ...
0
votes
2answers
92 views

Confused about using ViewState with dynamically added usercontrol

On my webpage I am loading multiple instances of a usercontrol, sometimes the usercontrol is laoded within itself. I need to save a bunch of properties for the round trip of a post back but i am ...
0
votes
2answers
111 views

Remove dynamic user control

I have a webpage that dynamically loads a user control. Each user control can recursively load the same control within itself. Each control has a delete button. The problem I am having is when the ...
0
votes
1answer
69 views

Can a ContentPlaceHolder be placed in a Web User Control?

I want to do something like this: I got this User Control called Base: <div> some content... <asp:ContentPlaceHolder id="baseContentPlaceHolder" ...
0
votes
1answer
67 views

Adding Web page to iFrame when a web user control event fires

i am new to aspx programming, I have a web page say default.aspx, and i am using two web user control on the page namely usercontrol1 and usercontrol2 now i am having an i frame on default page. I am ...
0
votes
2answers
175 views

looping through controls on form always getting first control

I have a webform which dynamically loads a web user control in it. Within the web user control is a repeater control, and the web user control can be dynamically created within it self as many times ...
0
votes
2answers
77 views

Referancing an assembly from GAC to web user control

I want to create web control and deploy to C:\windows\assembly\gac_msil folder (so, GAC) and use this control in .ascx files. But these .ascx files will be under the "C:\Program Files\Common ...
0
votes
2answers
171 views

Error in Web User Control with ITemplate in the Design mode

I have a web user control with the following markup <table> <tr> <td> <h1> <%= this.Title %></h1> </td> ...
0
votes
1answer
60 views

Access public property in usercontrol from codebehind without knowing usercontrol type

I wonder if it would be possible to access a property in a usercontrol without casting The specific typ of the usercontrol Example: var car = (Car)LoadControl("~/Vehicles/Car.ascx"); car.Brand = ...
0
votes
1answer
40 views

ASP.NET Tags not Being Converted

I am using ASP.NET tags in my markup an ASCX file. <a id="MyId" runat="server" href="page.aspx?id=<%= Item.Id %>">View Item</a> Item is a property in my control class in code ...
0
votes
3answers
79 views

how can I implement a user control's method outside user control?

Say I have a user control(SubmitButton) having a submit button that when a user clicked on, I want the control, which contains a SubmitButton instance, decide the behavior of submit button. I have ...

1 2