Tagged Questions
The ascx is used to create or define custom usercontrols to be placed onto web pages.
8
votes
4answers
6k views
Load ascx component using C# code
Is there any way that I can use C# to load and then "render" an ascx control?
Essentially I am trying to replace inline ASP with a C# function which will return the same HTML. This would then let ...
7
votes
3answers
689 views
JSP or .ascx equivalent for Scala?
I'm working on a small MVC "framework" (it's really very small) in Scala. I'd like to be able to write my view files as Scala code so I can get lots of help from the compiler. Pre-compiling is great, ...
7
votes
3answers
1k views
Is there an MVC way of doing ASCX?
Are ASCXs still used in ASP.NET MVC or should we be using something else?
4
votes
3answers
121 views
Am I on the right track (ASPX, ascx, design)
I have several webpages, each of these pages are more or less the same. Each of them have a employee section at the top. Next section is the customer section, and section after is previous orders. ...
4
votes
3answers
362 views
Encapsulating User Controls in ASP.NET MVC
Sorry if this is a basic question - I'm having some trouble making the mental transition to ASP.NET MVC from the page framework.
In the page framework, I often use ASCX files to create small, ...
4
votes
1answer
2k views
Compiling/Embedding ASCX templated UserControls for reuse in multiple web applications
I'm onto a real head scratcher here ... and it appears to be one of the more frustrating topics of ASP.NET.
I've got an assembly that implements a-lot of custom Linq stuff, which at it's core has ...
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
6answers
747 views
Is there a way to use “<%= someObject.ClientID %>” in an external javascript file?
Is there a way to use "<%= someObject.ClientID %>" in an external javascript file?
If I use the code
<%= someObject.ClientID %>
in a script tag inside my as(c/p)x page, it works fine. On ...
3
votes
2answers
602 views
Response.AddHeader in an ascx file
Is it possible to use the Response.AddHeader particularly Im trying to use the "Refresh" of it. I need it to pause before it redirects but the place where the code is being ran is in a ASCX in the ...
3
votes
2answers
1k views
Programmatically set Culture of User Controls in ASP.NET
I'd like to programmatically set the culture of my User Control which defines several Labels, Buttons and Textboxes ...
Usually, for aspx-pages you override the InitializeCulture-Method and set ...
3
votes
1answer
512 views
MVC, ascx and Javascript best practice(s) - how to create self-containing controls? NerdDinner does it wrong
The question is how to create controls/partial views/edittemplates (ascx files) in ASP.Net MVC2 so that they are "self-containing". Self-containing means here that if some Javascript code should be ...
3
votes
2answers
77 views
When is the right time to say: “Now I need to create a user control!”
I wonder when do you consider to create a user control in .NET? Do you have some basic criteria to exclude your code from the page and introduce a new user control?
Usually I tend to follow those to ...
3
votes
3answers
799 views
How do I add an ASP.NET control inside an ASCX to an external RequiredFieldValidator programmatically?
I have a drop-down list inside a user control (ASCX) that I want to validate from the page on which I've placed the ASCX, but when I set the ControlToValidate to the drop-down list the page complains ...
3
votes
1answer
619 views
Linq Lamba support in WebForms ASCX
After having worked in MVC for a few months, I'm back in a previously written WebForms 3.5 application, and I'm trying to fix up what I can with what I've learned.
Part of this is the "strongly-typed ...
3
votes
6answers
833 views
How do I associate the Enter key with a button on an aspx page?
I have an asp.net ascx control file and I have put the control on an aspx page. The aspx page has a button in which when I press enter on the keyboard, I want it to fire the event handler for the ...
3
votes
1answer
444 views
How do I use an asp.net user control in another user control?
I have a user control (gallery.ascx) and I want to use the photo.ascx control in the gallery control. I've added this register at the top of gallery.ascx, but it still can't find photo:
<%@ ...
2
votes
1answer
133 views
User Controls not reading Resource Files… Organize Resource Files Properly on WebForms .NET?
I'm working on a project right now which has aspx files in the root folder and one folder named "UserControls" that contains all the ascx files. I had to localize it so I used the App_GlobalResources ...
2
votes
3answers
167 views
How to find the url of parent page of a User control
I have a user control where if a certain action is performed I want to redirect to the page the user was on with some additional query string parameters.
So, if UserControl.ascx was on Home.aspx, I ...
2
votes
1answer
258 views
MVC3 Razor: Is it Possible to Render a Legacy ASCX?
With the Razor view engine in MVC3,
Is it possible to render a legacy ascx?
I was expecting to be able to do something like:
@Html.RenderPartial("Footer.ascx")
2
votes
2answers
749 views
How can I register a css page from an ascx control?
How can I register a css code block inside an ascx control?
Can I just have
<head id="head" runat="server">
<style type="text/css">
.customClass
{
...
2
votes
1answer
127 views
Adding a .ASCX item to the Sitemap
Is there a way to add .ascx files to a sitemap such that it will load/unload the controls based on the last ones visited? The problem is i have a page that contains a few controls that get placed ...
2
votes
1answer
279 views
2
votes
3answers
393 views
DotNetNuke, Ajax and jQuery: Hiding a table row
I have written a DotNetNuke module for a customer that allows them to "delete" a coupon from a table. When they click the link, an Ajax POST is created, using jQuery, and upon success the row should ...
2
votes
1answer
169 views
ASP.NET Controls from different assembly
I've got some controls in my 'GeneralControls' assembly (classic DLL), those consists of .ascx file (and codebehind for them).
I'm referencing that DLL, and using the controls as:
<%@ Register ...
2
votes
2answers
99 views
accessing controls in an aspx page
We have some code which is designed to build up a key/value pair of controls on a ASP.NET webforms page and their values. We use the "Controls" collection and recursion to build up this key/value ...
2
votes
2answers
619 views
Javascript code in ASP.NET MVC Partial Views (ASCX) or not?
Is there a "best practice" for placing Javascript code when you have many partial views and JS code that's specific to them?
I feel like I'm creating a maintenance nightmare by having many partial ...
2
votes
1answer
213 views
Validation when converting .aspx to .ascx
I'm currently converting a set of .aspx pages and the VB code behind them to .ascx and C#.
I'm most of the way through the project now but have become a bit stuck as I'm fairly new to ASP.net.
...
2
votes
5answers
839 views
inline dynamic string in ascx
This doesn't execute the delimiter (its displayed verbatim in the confirm dialog). Why not? Also, that variable is set in the codebehind, but is ready by the time PreRender gets called, so I should ...
2
votes
3answers
2k views
Refresh Content In a .ascx File
Because .ascx files are naturally rendered early in the page life cycle, if I want to update information on a form that is outside the .ascx part, how do I refresh the .ascx file to reflect the ...
2
votes
5answers
2k views
ASP.NET User Controls Cross-Communication
The scenario: 2 user controls (foo.ascx and fum.ascx)
foo has a method that would really like to access a property from fum. They live on the same page, but I can't find a very simple way to ...
1
vote
0answers
41 views
Registering .ascx ASP.NET User control in ASP.NET Page or Master Page will load it or not?
If I register user control in ASP.NET page, the control will be loaded to the page or not?
<%@ Register Src=".." TagName="tag" TagPrefix="pre" %>
even if I not call it in the page using?
...
1
vote
0answers
40 views
Property Value from ascx file in asp.net
how to set the value to the property from design view in asp.net, for some reason i cannot use the usual code-behind and have to set the value from design, i have a datalist which has entryid and i ...
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
1answer
64 views
How can I send an XML string to an ASCX Repeater Control?
I'm writing a Repeater Control in an ascx file which renders some info as a row that comes from a complex search. In an aspx file I have the query to retrieve a DataView that gives me the XML string ...
1
vote
1answer
273 views
Use a legacy ASP.NET ASCX User Control in MVC Razor view
I am trying to implement a MVC Razor _Layout.cshtml page that uses a WebForm ascx User Control (non-MVC). I am doing this based off the "Yes" section of this Scott Hansleman article "Mixing Razor ...
1
vote
0answers
39 views
Best practices when Integrating an ASPX User control into a web form
I have a dashboard that I've created for an MVC .net web app that is using Telerik tools. The concept I'm attempting to achieve is to have a master dashboard page, that users can add tabs to, each tab ...
1
vote
2answers
111 views
How to access usercontrol's radiobuttonlist from aspx.cs file
I'm having an impossible time getting the selected value of a radiobuttonlist control from an aspx.cs file. The radiobuttonlist control is inside of an .ascx file. I keep getting the ...
1
vote
1answer
163 views
Changing ASP image control in ASCX with JavaScript
I'm trying to change ASP image control's image source by javascript but change does not effect immediately.
ASP image control in ASCX
<asp:Image ImageAlign="Middle" runat="server" ...
1
vote
1answer
114 views
jQuery ASCX and Postback
I must be missing something here.
I have an ASCX control, containing a couple of textboxes and an asp:button.
i am loading the ASCX using JqueryUI Dialog as below:
<div id="myDiv" style="display: ...
1
vote
1answer
41 views
facing problem for loading user control from pagemethod
i have one user control and one aspx page. with the help of jquery i trigger a page method in my aspx file and which will load the user control from the static method. but i am getting error....so i ...
1
vote
1answer
39 views
Storing ascx in database
I would like to store the ascx control code into a database. Then rather then load the control from a filepath location, I would like to retrieve it from the database and load it into the UserControl. ...
1
vote
1answer
69 views
Prepopulating my ASP.NET Form
I have this code in my .ascx file (the ascx file is used in my search.aspx and search.aspx.cs files):
<form name="search" method="get" action="searchresults.aspx" id="searchform" ...
1
vote
1answer
77 views
Passing Enum to ASCX via html markup
I've this ASCX:
public partial class TopPhoto : UserControl
{
public TopPhotoEnum Mode { get; set; }
public int PhotoNumber { get; set; }
...
I want to set those property via html markup ...
1
vote
2answers
293 views
ASP.NET's framework javascript won't let me render a raw HTML IFRAME
I have a UserControl which rather than putting tags into its ascx markup file, overrides render() in its codebehind to write out XHTML generated from XML using XSLT.
I want to render out an iframe ...
1
vote
1answer
562 views
Set Gridview DataNavigateUrlFormatString Dynamically inside User Control(ASCX)
i have a issue that i dont know if it can be done.
i have an in an aspx page ,
that loads dedpends on user activity a user control (ascx).
the user control has a gridview which one of my columns ...
1
vote
1answer
101 views
Creating a user control - ascx project so all web sites in the solution will use in vs 2010
i am looking for easy way to make my ascx files code in one place and all my web sites in the solution to use , using vs 2010 .
so if i make a changes in the ascx file rebuild\publish and all the ...
1
vote
2answers
499 views
Retrieve value of TextBox from another class
I have a C# class from which I would like to access a string contained within a TextBox. The TextBox is defined in a an .ascx file. What headers should I put in the class to be able to access this ...
1
vote
1answer
319 views
DataList to PDF Export
I have an ASCX control which displays a tag cloud (red and green tags using a datalist). Is there a way to export this datalist to a PDF file, preserving both the tag size and its color? Thanks for ...
1
vote
3answers
350 views
ASP.net basic help with ASCX user control
Trying to build my own user control:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="TabMenu.ascx.cs" Inherits="TabMenu" %>
<asp:Panel runat="server" CssClass="tabWrapper">
...
1
vote
1answer
116 views
GridView Template Help
I have a grid view, that has repeating controls, with template fields that i'm currently learning and researching about.It includes a label and a drop down list.
The labels are bound to a type column ...