VS 2008 / Didn't Put The Custom Control On The Page

Jan 25, 2011

I haven't worked on web applications in eight months or so (last contract work was WinForms), and I am trying to remember what I knew about custom controls. My issue is that I am replacing a developer who is gone and there isn't much doc or knowledge on-site anymore regarding at what point his code was left off. So I am figuring it out. We work with 3rd-party software API's. In an extension (a DLL), I am able to test what 3rd-party page is being navigated to and navigate to my own page instead. Let's call this page UserApproval.aspx when its the 3rd-party page, and UserApproval_mmock.aspx when it's mine (really his - the former developer's). The former developer has a line of code in the _mmock page, like so:<%@ Register TagPrefix="mockCustomCtl" TagName="TestControl" Src="~/Folder-1/Controls/MyCustomControl.ascx" %>Nowhere else in the code do I see a reference to mockCustomCtl. Shouldn't I, if the page is indeed rendering this control? Could that be where he left off - he created his own replacement page, created the custom control (I do have the source to MyCustomControl.ascx), but didn't actually put the custom control *on* the page?

View 11 Replies


Similar Messages:

VS 2008 - Page And A Custom Control On That Page

Sep 7, 2011

I have an asp.net pagel called UserApproval.aspx. On that page is a custom control ascx. So the order of events is that UserApproval's Page_Load is called, then the ascx's Page_Load is called. The ascx page might discover a problem and can't render what it needs to render (if the user isn't authorized). It has no problem hiding some of the web controls on it, but I would also like to hide some of the web controls on the parent/UserApproval page. Am I able to do this?

For example, the parent page displays instructions about clicking a button. But the buttons are built by the custom control if the user is authorized to see the buttons. If he can't, can I change or hide the parent's instructions?

View 7 Replies

VS 2008 - GridView AutoFormat Didn't Work

Aug 4, 2010

I'm not sure where went wrong, from the beginning, my gridview didn't reflect what I choose in AutoFormat style. I tried to set one of the styles and Apply and OK, the grid rows seems to reflect but header row color remains the same. My gridview has pre-defined columns and I bind it to datatable at code behind. And it is placed inside div tag which is inside a table tag. And this page is a child page inside a master page.

View 3 Replies

Custom Server Controls :: Add This Control To The Page,an Alert To Check The Text Value Of The Custom Control?

Dec 20, 2010

created a Custom Textbox Control that is intended to be a "masked date" textbox, so that I can handle different ways a user might enter in a date and make it work no matter what.I did this by creating a custom control with 3 separate Textboxes one for month,one for day one for year,then do some handling for different things that could be entered and it would all work.

The problem I am having is,when I add this control to the page,if I do an alert to check the Text value of the custom control it just gives me "[ServerControl1]" even if I enter in a date.

I tried doing an AutoPostback after entering so that it would refesh the Viewstate to have the values of the textboxes but the control doesnt seem to actually postback, even though I have it enabled.accessing the Textbox value after someoen
has entered a date?first custom control I have created and have been using google.

My Server Control Code is as follows:

[Code]...

View 1 Replies

VS 2008 - How To Create A Custom Gridview Control

Dec 9, 2010

I'm creating a custom gridview control. so far I've been able to add custom sort arrows and an export to excel feature.

Now I want to have a textbox and a button in the header row to filter each row.

I want to extend either the boundfield or boundcolumn class to add a property that will allow me to distinguish wheter the column should have a filter textbox in the header.

View 37 Replies

VS 2008 - Add ModalPopup To Gridview Custom Control?

Jan 13, 2011

I have a Gridview Custom Control (class library project). What I want to do is, add a button to the page. Once the button is clicked, I need a ModalPopupEctender to come up with a checkboxlist of all the Columns in the SQLDataSource that populates the Gridview.

Now since this is a class library project that inherits from the Gridview, I'm not sure how I can add a div at the very top of the page, with the "Choose Columns" button.

Should I create a user control that contains my Custom Gridview? Reason I want to do what I ask is because I want to reuse this in as many projects as I can, I wan this functionality built in to my dll.

View 3 Replies

To Create A Custom Control That Adds Other Controls Visible To The Page Hosting My Custom ?

Oct 22, 2010

I want to create a custom control where I define several specifically named DIV sections. The code-behind logic of the custom control will perform operations on these named DIV sections. The page where the custom control is hosted needs to be able to add named controls to the DIV sections and perform operations on these named controls added to the DIV sections.

Let me explain a little further. In the custom control, I want to have code behind logic that fires the following Page Event and uses a condition to make one or another specifically named DIV section visible or not:

< _
ToolboxData("<{0}:BaseDetails runat=""server""></{0}:BaseDetails>") _
> _
Public Class BaseDetails

[code]...

how can I create a custom control which is able to generate the named DIV sections "DetailsNameDiv1" and "DetailsNameDiv2" where my custom control can check a condition and make one or the other visible. Also, I need to be able to add controls to these named DIV sections when I host the custom control and the control that I add to the named DIV section needs to let me set values of these controls from the code behind logic of the page (or usercontrol) where the custom control is being hosted (in my example, I am adding TextBox controls that I want to set the Text property from a SQL Data Reader).

View 3 Replies

Web Forms :: Query String Value Didn't Pass To Page - Redirect To First?

Jan 29, 2011

I have two pages in asp.net page1.aspx and page2.aspx From page1.aspx am passing the query string value to page2.aspx If user directly go and load page2.aspx, then i need to redirect to page1.aspx, coz page1.aspx query string value should be passed to page2.aspx

View 1 Replies

MVC :: Assigned Value It Returned To Index Page To Show / Didn't Display Anything

Jan 11, 2011

In HomeController i have set the view data values (ViewData["message"] = "World!";)..

After assigned value it returned to Index page to show. In index page i used code <%= ViewData["message"] %>.. But it didnt display anything.. What is wrong in my code..

View 6 Replies

Forms Data Controls :: ListView Control Didn't Display HTML Image?

Apr 29, 2010

i have a website which has a listview control and databind in a SQLdataSource Control, and in its ItemTemplate has a HTML Image Control.

but when i run the website, it displays other fields from the Database but the image is not displaying,

to test if there is a problem in the link of the image or the image it self,

i add a Repeater control just under the ListView Control and Copy the whole ItemTemplate from ListView to Repeater and when i run the website, the image in the Repeater is displayed but the ListView does not.

this is my asp.net code.

[Code]....

View 5 Replies

Custom Server Controls :: How To Use A Custom Server Control That Is Defined In Inline Code In The Same Page

Oct 22, 2010

I have to use inline code for an aspx page and I need to use a custom server control that is defined in the same aspx page but the control does not get processed as a server control. it gets returned as is as static html tag.

View 3 Replies

How To Move .NET PlaceHolder Control From Page Controls Collection To Custom Control's Output

Feb 26, 2010

I am writing an ASP.NET custom control.In my custom control code, I find a PlaceHolder control in the page like so:this.myPlaceholder = Page.FindControl("placeholder1") as PlaceHolder Then, I render the placeholder as the output of the custom control:

protected override void Render(HtmlTextWriter output)
if (this.myPlaceholder != null)
this.myPlaceholder.RenderControl(output);

However, this causes the placeholder to be rendered in two places - in the custom control output (good) and in the original location in the page (bad).

View 1 Replies

C# - Add Reference To Method In Custom Control To A Child Control Created In That Same Custom Control

Feb 3, 2010

I have a custom control that is based off the gridview control located at: here The control is basically a gridview that automatically creates a column of checkboxes that can be used to "check" individual rows in the gridview. During the gridview's "CreateColumns" event, the "checkboxcolumn" is created dynamically. The checkboxcolumn also contains another checkbox in the header that is used to "select/deselect all" checkboxes in the column. Since the gridview does not automatically remember the state of the checkboxes in the checkboxcolumn on postback, I added a method to the control called "SaveCheckBoxState" which stores the indexes of the checked rows in Viewstate, and then I modified the "OnRowDataBound" event to check the Viewstate and reset the checkboxes based on the Viewstate.

I then added a call to "SaveCheckBoxState" in the gridview's OnSorting and OnPageIndexChanging events. This works great so long as I'm sorting or changing pages. However, I need it to update the viewstate everytime someone clicks or unclicks one of the checkboxes. At this time, the checkboxes are rendered with an onclick event that calls some javascript to highlight the row, or in the case of the checkbox in the header, to select/deselect all checkboxes. I need to call the "SaveCheckBoxState" method from the javascript used by the customcontrol, or I need to find a way to modify viewstate from javascript and perform the same action as "SaveCheckBoxState".

I've tried adding the "SaveCheckBoxState" to the onclick event declaration in the checkboxes, but when run, it simply tells me that the method is undefined. It doesn't exist in the parent page, and I don't think I should have to make an event for the parent page to pass the click to. It seems to me this should be all self contained within the custom control. Does anyone know how I can acheive this? Here is the code for the gridview OnPreRender event where the onclick event of the checkbox is set:

protected override void OnPreRender(EventArgs e)
{
// Do as usual
base.OnPreRender(e);
// Adjust each data row
foreach (GridViewRow r in Rows)
{
// Get the appropriate style object for the row
TableItemStyle style = GetRowStyleFromState(r.RowState);
// Retrieve the reference to the checkbox
CheckBox cb = (CheckBox)r.FindControl(InputCheckBoxField.CheckBoxID);
// Build the ID of the checkbox in the header
string headerCheckBoxID = String.Format(CheckBoxColumHeaderID, ClientID);
// Add script code to enable selection
cb.Attributes["onclick"] = String.Format("ApplyStyle(this, '{0}', '{1}', '{2}')",
SelectedRowStyle.CssClass,
style.CssClass,
headerCheckBoxID);
// Update the style of the checkbox if checked
if (cb.Checked)
{
r.BackColor = SelectedRowStyle.BackColor;
r.ForeColor = SelectedRowStyle.ForeColor;
r.Font.Bold = SelectedRowStyle.Font.Bold;
}
else
{
r.BackColor = style.BackColor;
r.ForeColor = style.ForeColor;
r.Font.Bold = style.Font.Bold;
}
}
}

View 1 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

Custom Server Controls :: Paging And Sorting Gridview Custom Control Inside Of A Wizard Control?

Dec 24, 2010

here's a situation and I would appreciate your response.

I have programmatically created the Wizard control:

Page_Load(obj s, evargs e)
{
Wizard ClaimDetailWizard = new Wizard();
foreach(int item in selectedItems)
{
//create new step
//added custom control to new step
//add step to wizard
}
//added wizard to a placeholder on a page
}

Based on List I get from Session i added new steps to my wizard To each step I had added a custom control

Each custom control in tern contains another custom Gridview Control in it.

So here's the problem when the page loads for example for two steps. All is good Wizard does what it's supposed to do.

But when I try to use sorting or paging in that custom Gridview. Somehow it displays the gridview I should see in the next step of the wizard.

Also what I'm noticing through debugging. Is that when I press next in the wizard I go back to the original page where I do all of the code specified above, and it recreates the wizzard. But it goes to the next step. Is this the way wizard supposed to work? Just doesn't seem very efficient.

View 1 Replies

VS 2008 Adding A Control To Page

Jan 19, 2010

I have an existing page. I drag a text box control from the tool box onto the page. When I execute the application I get error (this happens to other additional controls as well):

<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
At this point I do not have any errors.

Now when I reference the control in the code behind, it gives me error when I execute the application.

If TextBox2.Text = "" Then
mySqlCommand.Parameters.Add(New Data.SqlClient.SqlParameter("@GroupName", Data.SqlDbType.VarChar, 50)).Value = DBNull.Value
Else
mySqlCommand.Parameters.Add(New Data.SqlClient.SqlParameter("@GroupName", Data.SqlDbType.VarChar, 50)).Value = TextBox2.Text
End If
Error2Name 'TextBox2' is not declared.
Error3Name 'TextBox2' is not declared.

View 24 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

C# - Custom Control On Page Using A MasterPage?

Feb 17, 2011

I have a content page which has a related master page.I register a prefix <%@ TagPrefix ..... and can load other custom controls at that namespace.However, one particualar control at the same namespace, when added to the aspx page, breaks it.The control in question inherits from asp:Panel, has a parameterless constructor, defines a few public accessors, and creates some standard child controls, and nothing much else.Are there some fundamental restrictions to creating custom asp controls that I am breaking unknowingly?

View 2 Replies

VS 2008 - Hide A Control At Page Load?

Oct 6, 2010

I have a control I need to hide when loading page. Not sure how to do that in a good way. This is what I have, it very briefly shows the control when page is being loaded then hides it.

Code:
<script type="text/javascript">
window.onload = function() {
document.getElementById("<%=UpdateProgress1.ClientID %>").style.display = 'none';

View 2 Replies

Accessing Property Value Of A Custom Control By Another Custom Control In Design-time

Oct 18, 2010

I created an Extender which has a custom property that drills down a list XML elements from an xml file, where users can select xml elements during design-time. This works perfectly fine. However, my code only has a hardcoded xml filename (source of the xml elements list) and I need to change this by maxing the xml file user-specified.

What I did is that I created another control (panel) which has a custom property that when clicked (through the ellipsis), it will allow a developer to select the xml file which is supposed to be the source xml file that the Extenders shall use. The filedialog from custom panel's property works perfectly fine.

However, my problem now is that when I drag-drop my Extender, I cannot find a way to get the property value of the custom Panel Control which contains the xml filename. I tried creating a static variable which I thought the custom controls can share but VS2010 is breaking.

View 4 Replies

Parent Page Class Not Accessible From Custom Control?

Jan 21, 2010

1) I've page class public partial class MyDelivery : System.Web.UI.Page

2) ASCX is in different subfolder public partial class MyControls_Hello_Bye : System.Web.UI.UserControl

I am unable to access #1 parent page class from control

View 2 Replies

C# - Dynamically Adding A Custom User Control To A Page?

Nov 3, 2010

I have a usercontrol (ascx) that I want to dynamically add to a page.

Neither the control nor the page has a namespace (thanks crappy vendor).

When I use the following, it tells me it cant find the "type or namespace"

StayTunedControl = (UserControler_StayTuned)LoadControl("~/UserControler/StayTuned.ascx");
Page.Controls.Add(StayTunedControl);
StayTunedControl.StayTunedID = Convert.ToInt32(IncludesStayTunedMeta.Value);

After some tweaking to the namespaces, etc, I am now at a point where the 3rd line above generates the following error:

'System.Web.UI.UserControl' does not contain a definition for 'StayTunedID'

I was hoping that casting StayTunedControl as type (UserControler_StayTuned) would fix this.

View 2 Replies

Getting Access To A Custom Master Page From A User Control

May 24, 2010

We have created a Master page that inherits off the asp.net Master class.We have also got ui controls that inherit off the standard asp.net ui control class.Our Master page has a public member variable. We need to be able to access that member variable from the ui controls that we use.However we can't seem to get at it? Is it our architecture that is wrong? Or the idea itself - user control getting acces to Master page variables?

View 2 Replies

How To Hide Property Of Custom Control In Aspx Page

Feb 8, 2010

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 designer and in a aspx code of page containing this control. I've tried to use following attributes:

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
[Browsable(false)]
public List<Item> SomeData
{
...
}

but unfortunately this property is still visible in an Intellisense combobox when editing aspx page. Is it possible to hide this property everywhere besides server-side code ?

View 2 Replies

Web Forms :: Page Events Vs Custom Server Control?

Aug 1, 2010

I have custom server control contains templatefield when an out button clicked the field disappear , when can I rebind the control (inside its class) supposed that Control.Page.OnInit+=new EventHandler(rebind()) doesn't do any things ?

View 4 Replies







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