Access To MVC Models From Standard ASCX UserControl?

Mar 15, 2011

I've got a simple ASCX user control (non-MVC). The user control has a property on it (let's call it Title or something).

I've also got an MVC Partial View which contains the user control.

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<SomeModel>" %>
<%@ Register TagPrefix="tag" TagName="Control" Src="~/path/to/ascx/control.ascx" %>
... snip ...
<tag:Control ID="myControl" runat="server" />

What I'd like to be able to do is something like this:

<tag:Control ID="myControl" runat="server" Title="<%= Model.Title %>" />

... so that I can access some property of the model inside my Control.
Unfortunately this method doesn't work, as I get a message saying "This is not scriptlet. Will be output as plain text".

Is what I'm trying to do even possible? If so, how I can try and do it?

If it's relevant, this is a .Net 4 project, with MVC 2 components.

View 1 Replies


Similar Messages:

C# - Access UserControl Property From Ascx File?

Mar 5, 2011

I have a function that Localize the text of my control.

// code behind
lblName.Text = Localization.GetLocalValue( "Updated" , this.Path );

and I know that i can call a function inside ascx file.

// ascx file
Text='<%#Global.Convert( (DateTime)(Eval("CreatedDate")) %>'

How can i Get Path Property in ascx file To call GetLocalValue ?

View 1 Replies

MVC :: Models In UserControls / Load A Usercontrol With Its Own Model

Mar 17, 2011

I am trying to load a usercontrol with its own model, how does this work in practice? What I want really is to click on a button in a View which opens up a UserControl in the center of the page but there will be no sending my model to it because the model used on the page does not contain what I want it to display in the control (More detailed, the page is a memberpage and the uc is an admin page for approving images sent by other members). I've messed around with Inheritance but not really gotten any good results from that perhaps im doing it wrong). This is how it looks today:

The Model

[Code]....

The Controller

[Code]....

The Link

[Code]....

The UserControl

[Code]....

The Error

What can I do differently to make this thing work properly?

View 9 Replies

C# - Custom Attribute In A UserControl (ascx)?

Mar 8, 2011

Supposing I have a user control like this <MyTag:MyWidget runat="server" /> I am wondering if I can do something like <MyTag:MyWidget runat="server" MemberHeight="400" PublicHeight="200" /> So that in MyWidget.ascx I can have <div height="<%=IsLoggedIn ? MemberHeight : PublicHeight%>"> or something like that...? Because I want the height to vary in each page that is using this widget.

View 2 Replies

Web Forms :: Open A Usercontrol(.ascx) In A Popup?

Feb 15, 2011

I am trying to put a usercontrol in a popup.. finding code using any way (ajax,javascript, jquery). i am unable to provide the control in popup.

View 1 Replies

AJAX :: ModalPopupExtender In UserControl.ascx Dynamically Loading Into Placeholder

Jul 28, 2010

if Panel have any aspnet control,panel not popups.otherwise working.whats wrong here ? is it impossible ?

[Code]....

View 1 Replies

User Controls :: How To Pass Value From UserControl (ASCX) To Page (ASPX)

Jan 19, 2014

I have two files in my project. One is user control (popup) customerpicker.ascx and one is default.aspx page. In customerpicker I have dynamically generated gridview and 'select' column with SelectButton.

What I want is this: When I click on 'select' on random row in gridview, then I like to display value from selected row immediately (like ajax) to aspx.page. How it is possible?

There is part of my code in .ascx:

public string showOnaspx { get; set; }
protected void GridView1_SelectedIndexChanging(object sender, GridViewSelectEventArgs e)
{
GridViewRow row = GridView1.Rows[e.NewSelectedIndex];
showOnaspx = row.Cells[1].Text;
e.Cancel = true;
}
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
GridViewRow row = GridView1.SelectedRow; 
//row[i].Attributes.Add("onclick", "$('#ContentIndex_sometextbox).val(" + row[i].Cells[1].Text// + "); $('#Close').click();");
}

I also tried with jqeury (comment in selectedindexchanged function), but it does not work well, because user have to click SELECT two times to effect.

View 1 Replies

Forms Data Controls :: How To Use Gridview Usercontrol (Ascx) And Sql Pass To Aspx Page

Nov 10, 2010

how to use gridview usercontrol (Ascx) and sql pass to aspx page

View 4 Replies

MVC :: Making Base Models With View Models

Nov 3, 2010

i have a base controller that looks like this:

[Code]....

and a contact model that inherits from the base model.

the master page inherits form the base model,

nad the contact page inherits from the contact nodel,

but then i get an error while loading the contact page that it expects the contact model but gets the base model?

View 9 Replies

C# - Access A Ascx Parameter In Code Behind?

Oct 27, 2010

I was wondering if I could add a user control to a page with a parameter and then access that parameter in the code behiind for initiallization.

For example on my aspx page i would have somethign like.

[code]...

View 2 Replies

How To Access A Public Function In .ascx File Using C#

Mar 9, 2011

how can i access a public function in an .ascx file using C#?

View 3 Replies

Web Forms :: How To Access Ascx Control From Content Pages

Feb 25, 2010

I have a master page with a ascx control I use for a header. There is a label in HeaderControl1 I need to set from the content pages. I was able to make the changes in the master template as a tes by just calling the control and accessing the property.

HeaderControl1.txt = 234

[Code]....

[Code]....

View 4 Replies

Forms Data Controls :: Access To BasePage From Ascx?

May 6, 2010

I have a basepage class which holds a bunch of properties, and specifically a context reference to entityframework

I have a standard .aspx page that inherits from the base page like so

public partial class myinterviews : BasePage

I have a standalone .ascx page, it has a grid and a datasource. This .ascx page is apart of the .aspx page that inherits from the base page. How can I reference the methods, properties from the base page from within my .ascx page?

View 1 Replies

Web Forms :: Access From Ascx Control To Public Variable From Aspx?

Jan 14, 2011

I have a variable in an aspx file I need to use/recover it's value into an ascx web control that's in this aspx file. It's possible to do it? The aspx dynamically loads web controls depending the scenario, so this web control not allways is loaded.

View 2 Replies

Access Database Info In A Partial View, .ascx That Is Included In Site?

Apr 2, 2011

i'm having problems with this. I am developing an asp.net mvc 2 application. I have a partial view menu.ascx defined. this gets included on all the pages of my site in the Site.Master masterpage. Now the thing is I want my menu to change according to the type of user.Here's what I did at first:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %>
<li><%: Html.ActionLink("Home", "Index", "Home")%></li>
<% [code]....

I shouldn't be doing this in the view ! But since this is the MasterPage no controller actually calls it so I don't know where to put the info in the ViewData dictionnary or ViewModel to pass it to this masterpage.

View 1 Replies

C# - Extend Control (ASCX) And Access Base Markup File From Subclass Code?

Jan 29, 2010

I'm building form validation controls for our C# ASP application. The bulk of the work is handled by a BaseValidator control (subclassing System.Web.UI.UserControl), which also has the markup for the validation output. This is then extended by subcontrols like PasswordValidator, that provides the Validate method and any extra fields needed by that validator control.

(The end goal is to have controls like <uc1:PasswordValidator ControlId="txtPassword" /> which we can plop into any form with minimum duplication.)

However, PasswordValidator.ascx.cs cannot access the form elements defined in BaseValidator.ascx; the only way I've found to do so is to duplicate the markup in each subcontrol's *.ascx file. How can I extend BaseValidator.ascx.cs and access BaseValidator.ascx's markup in the subclass?

View 3 Replies

Unable To Access Dynamic Controls Inside Ascx Using Javascript On Aspx Page

Jun 2, 2010

I have a user control (ascx) which contains a control (hidden field). In the page_load event of ascx, i have the below code:

HyperLink.Attributes.Add("onclick", "JavaScript:return AccessControl('" + hdnField.UniqueID + "');");
Note: The hidden field resides in .ascx file.

I want to access this hidden field at runtime and i have the below javascript function in aspx page that loads the usercontrol.

function AccessControl(hdnFieldId)
{
var ctrl = document.getElementById(hdnFieldId);
alert(ctrl);

I am getting 'null' value in the alert. I tried using 'ClientID' and 'this' instead of 'UniqueId'. I am wondering why this is not working. I am using .net 2.0.

View 1 Replies

MVC :: How To Encapsulate Logic In Ascx Partial View With The Same Efficiency Of Webforms Ascx

Aug 10, 2010

I have to build a few ascx partial views in my MVC applications to encapsulate re-usable functionalities as well as archive SOR and SOC. However, I encountered challenge how to encapsulate the business logic that drives MVC ascx views.In webforms, the code behind of an ASCX control can handle a button click event and browser still shows the same page with only one postback. How can I archive the same thing in MVC? When ~/Address/Edit/2 includes an ascx partial view with a button on it that calls another MVC action - let's say ~/ShareController/CommonAction - what is the best way for the CmmonAction to return to the very same view that includes the ascx file?Perhaps I am missing a common pattern in MVC web development?

View 5 Replies

Access One UserControl From Another Using ASP

Oct 7, 2010

I have created a user control UserVote that has property to find total vote on particular question. Now I want to call it from an aspx page.The control code-behind (UserVote.ascx.cs) looks like:

public partial class UserVote : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
DataTable dtVoteInfo = ShowVoteDetail(objectType, objectId);
if (dtVoteInfo != null)
{
if (dtVoteInfo.Rows.Count > 0)
{
int.TryParse(dtVoteInfo.Rows[0]["TOTAL_VOTE"].ToString(), out currentVote);
int.TryParse(dtVoteInfo.Rows[0]["MY_VOTING"].ToString(), out myVoting);
}
}
ltrVotes.Text = currentVote.ToString();
hfCurrentVote.Value = currentVote.ToString();
hfMyVote.Value = myVoting.ToString();
// ...snipped for brevity...
}
}

The control markup (UserVote.ascx) looks like:

<div class="vote-cell" style="width: 46px; height: 92px">
<img src ="~/UserControls/Vote/Images/Arrow Up.png"
id = "voteupoff"
runat = "server" alt ="vote up"
class="voteupImage"
style="height: 45px; width: 45px"/>
<div class="vote" style ="text-align:center; color:#808185;font-weight:bold;">
<asp:Literal ID="ltrVotes" runat="server" ></asp:Literal>
</div>
<img src ="~/UserControls/Vote/Images/arrow_down.png"
id ="votedownoff"
runat = "server" alt = "vote down"
class = "votedownImage"
style="height: 45px; width: 44px; margin-left: 0px;" />
</div>
My page code-behind (viewanswer.aspx.cs) looks like:
UserVote Voteing = (UserVote) **what i write here...**.findcontrol(voting)
Voteing.objectType =300;
Voteing.object id= 2;

My page markup (viewanswer.aspx) looks like:

<klmsuc:Voteing ID="Voteing" runat="server" />

View 3 Replies

Control Within Ascx Is Null When Ascx Is Added From Codebehind?

Apr 14, 2010

I am having difficulties how to construct my question, but if I have to put it simply the situation is that I have categories of products. I have an aspx with a repeater on the left that lists the categories. And I want the products to be listed on the right. Category number is variable so I made an ascx with a DataList in it. When I try to do foreach category, ascx = new ascx(); then the DataList within this ascx control is null.

ps: what I want to do is to preload all the products (thre is not much) and hide the divs and fadein fadeout them using jQuery when a category div is clicked.

rightnow it is using jQuery.load(); and I don't like how the images load, cuz they download from top to bottom. Progressive gifs alsdo not an option. site demo is here [URL]

View 1 Replies

How To Access An Usercontrol From The Code Behind

Jul 23, 2010

I have an usercontrol with fck editor for allowing user to add note in my aspx page, which allows the user all kind of text formatting.My need is that I have to access user control from the code behind and collect the content as the same format some one has entered in the fck editor.How can I do this?

View 2 Replies

How To Access Usercontrol Codebehind

Nov 11, 2010

(i) Default.aspx and Default.aspx.cs(ii) MyControl.ascx and yControl.ascx.csTo access MyControl.ascx from Default.aspx, we use following in Default.aspx:

Register
TagName="abc"
TagPrefix="Controls"
Src="Numabc.ascx"%>

But now I am wishing to access in MyControl.ascx.cs from Default.aspx.cs page. By default, I am totally unable to access any control or function exist in MyControl.ascx.cs file or say codebehind.

View 6 Replies

Access Dataitem In Usercontrol?

Feb 4, 2011

I'm using DataTable for DataBinding.

Can I access dataitem (I think its suppose to be DataRow in my case) from aspx?

Something like:

<img alt="" src='<%= DataItem("ColumnName") %>' />

View 6 Replies

How To Access The Usercontrol Added By Designer

Jun 12, 2010

i have added a usercontrol using designer i want to set public properties of this user control but how to access the instance of this user control?

in the designer its showing the usercontrol name as uc3:Pager#Pager1

View 3 Replies

Access Control In Page From UserControl?

Jun 8, 2010

How do I access the Control (dropdownlist) in current Page from the UserControl? In the UserControl:

String test = ((DropDownList)this.Parent.FindControl("drpdwnlstMainRegion")).SelectedValue;
or
String test = ((DropDownList)this.Page.FindControl("drpdwnlstMainRegion")).SelectedValue;

It return null on ((DropDownList)this.Parent.FindControl("drpdwnlstMainRegion")) for some reason? BTW ... I am using ASP.NET C# 3.5.

View 2 Replies







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