AJAX :: Web User Control Loaded Into PlaceHolder Control Causing Full Postback On Parent Page?

Jun 1, 2010

In my default.aspx page I have a PlaceHolder control within an UpdatePanel. In this placeholder control I will dynamically load a web user control, which is just a form with a submit button. On this user control, I have the form within an update panel and I have the "Submit" button's Click Event added to the triggers.

When I submit the form, the UpdatePanel on the web user control nor the update panel on the default.aspx page are capturing the post back, thus causing a full post back which refreshes my page.

how to capture this post so its rendered in Ajax and not a full post back?

View 1 Replies


Similar Messages:

User Control Inside Update Panel Causing Full Page Postback

Jul 13, 2010

I have a user control with linkbuttons (used for paging) and a repeater inside an update panel. The paging works correctly, but is causing a full page postback every time I click through to the next page.

The update panel looks like this:

[code]....

So far, I have tried adding an async postback trigger for the user control, which does cause an async postback but does not update the rest of the text in the update panel. In otherwords, the async postback occurs and the next page shows up, but the original text in the repeater is there as well just below it.

I have also confirmed that I have IDS set on my linkbuttons, since that can trigger a full postback inside an update panel.

I have tried changing the update panel mode (Always, Conditional, ChildrenAsTriggers, etc.).

None of it makes a difference - the only thing that actually causes an async postback is to use the trigger, but then the rest of the content in the update panel is not updated, so I get duplicate content.

View 2 Replies

C# - Updating Parent Page From Dynamically Loaded User Control

Feb 20, 2011

Hosting page:

protected void Page_Load(object sender, EventArgs e)
{
LoadMyControl(Parameters); //Do it every page load to preserve it's state
}
protected void LoadMyControl(string parameters)
{
plchld.Controls.Clear();
Control userControl = LoadControl("TheUserControl.ascx");
userControl.ID = "userControl1";
plchld.Controls.Add(userControl);
}

Now inside this control, when a button is clicked I want to update ,let's say a Label on the hosting page.
What is the best way to do it? Custom event?

View 1 Replies

AJAX :: Modal PopUp's OkClick Causing Full Page Postback?

Apr 28, 2010

I am having issue with my ModalPopUpExtender's OKControlID. I have a button inside an update panel that should do AsyncPostBack. The button works fine and runs server side code but it causes full page postback. How do I solve this issue? I want the 'OK' button inside the modalpopup to call the serverside code and update Label control 'label3' without causing the page flash. Given below is my code;

MarkUp:

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Next Gen Web Browser</title>
<script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.js" type="text/javascript"></script>

[Code]....

View 5 Replies

Drop Down List In User Control Cause Full Page Postback?

Jan 14, 2011

I have the following scenario. I have a page that hosts several user controls. The user controls are all surrounded by a single update panel. All user controls have a save button on them. When the save buttons are clicked the page updates the update panel as expected. Some of the user controls contain editable list views. Whenever an action is taken on these list views, the Update Panel is NOT refreshed, but the whole page posts back. How can I get these ListViews to also refresh the Update Panel? I cannot post the code because of NDA. There are no javascript errors on the page reported by either IE8 or Chrome.

View 1 Replies

AJAX :: Full Page Postback Using Login Control?

Apr 14, 2010

I'm using an UpdatePanel (with UpdateMode conditional) and in the ContentTemplate I've got a Login control. Even though the control is embedded in the UpdatePanel as soon as the Login-button is hit a full page postback is being done. I've read some posts on the subject indicating that these controls are incompatible - but these posts already date from 2 years ago. Does anybody have more recent information on the subject?

View 5 Replies

AJAX :: Link Button In Gridview Causing Full Postback?

Feb 11, 2011

I have a link button inside a template field of a gridview. The gridview is wrapped in an update panel. I want the link button to fire an async postback but it always fires a full postback. Why is this?

This is a similar problem to the one described in the link below. However, I have tried doing a RegisterAsyncPostbackControl in the gridview databound, but this did not work.

[URL]

View 10 Replies

AJAX :: Calling Parent Page Method From User Control?

Oct 3, 2010

I looked up the threads about this. But I couldn't do it...

this is my method in aspx.page:

public void MesajlariGetir()
{
DataSet ds = new DataSet();
SqlConnection con = new SqlConnection();
SqlCommand cmd = new SqlCommand("msjlarigetir", con);

[Code]....

View 4 Replies

Web Forms :: User Control C# - Open User Control Page When Click A Button On Parent Page

Mar 22, 2011

i would like to ask about how can i open user control page when i click a button on parent page, also, can i call parent's method from user control page and then refresh parent page?

View 8 Replies

AJAX :: Calling Server Side Events For A User Control Loaded In Update Panel - Refresh Page

May 23, 2010

I need to update datalist in image gallery when fileupload has been completed.

<div style="display: block;">
<div>
<div style="padding-left: 15px; padding-right: 15px;">
<div>
<uc1:ctrlFileUpload ID="ctrlFileUpload1" runat="server" />
<uc2:ctrlImageGallery ID="ctrlImageGallery1" runat="server" />
</div>
<div>
</div>
</div>
</div>
</div>

In the Control File Upload I need to fire the the other ctrl to refresh the page.

<asp:UpdatePanel ID="UpdatePanelUploadArea" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<span>
<asp:FileUpload ID="FileUpload1" runat="server" />
<br />
<asp:Button ID="UploadButton" runat="server" Text="Upload Now" OnClick="UploadButton_Click" />
<asp:Label ID="lblResult" runat="server" ForeColor="#0066FF"></asp:Label>
<br />
</span>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="UploadButton" />
</Triggers>
</asp:UpdatePanel>...........

View 25 Replies

AJAX :: Custom Control In Updatepanel Should Create Full Postback?

Jun 2, 2010

I am searching already the web for some hours to get this working. I created a custom control (ConfigTree), which has a treeview as part of it. I put the custom control into an update panel. So far so good. When I click on different buttons (in ucc:ConfigTree) or the treeview in the custom control an async postback is done. When clicking on a node in the treeview an event for the parent element (ConfigTree) is generated, which populates again an event (NodeSelected) for the parent element (shown below). Different parent elements can handle the event differently. In one element (this one) I need to transform the async postback in a real postback with full page refresh. For better understanding see the following code:

[Code]....

the parent element (here shown) should process the OnNodeSelected and transform it into an full postback and not just an async postback, but only this event, all the other events in the ucc:ConfigTree should processed async. How can I do that? Is there a method to call in the code behind?

View 1 Replies

Add User Control After Page Is Loaded?

Aug 31, 2010

I am trying to add dynamically a user control I created to an aspx page after it is loaded. I tried sending an ajax request to a handler that used RenderControl function and sent back the control's html. I appended it to the DOM using javascript.

The problem is that some of the controls must go through their Page_Load function and that doesn't happen when using RenderControl function.

View 3 Replies

Web Forms :: 2 Instances Of A User Control On The Same Page Causing Page_Loads To Fire On Both?

Jan 12, 2011

I've created a User Control (.ascx), which has a dropdown. When an item is selected, it uses some model classes to pull back a set of data which it then dynamically displays as a list of checkboxes in a panel control.

When I add one to the page, it works very well indeed.

However, when I add another I get this behaviour:

1. Select an item from the first dropdown, the checkboxes appear underneath ok.

2. Select an item from the second dropdown, the new lot of checkboxes appear ok, but the first lot disappear.

It's rather frustrating, they both have different IDs on the page, so they shouldn't interfere with each other should they? There is some Javascript that I've added but I use the Panel.ClientControlID to separate these out (I've already thought of that one).

View 4 Replies

How To Raise Events To Page From Dynamically Loaded User Control

Feb 23, 2010

I have user control that inherits a base control class and these user controls are loaded using the LoadControl method, I can't seem to figure out how to raise events from user controls to the page that are dynamically loaded this way. Here is the delegate and event in the base user control class.

public delegate void SomeChangeEventHandler(object sender
, SomeChangeEventArgs e);
public event SomeChangeEventHandler SomeChangeEvent;
public virtual void OnSomeChanged(SomeChangeEventArgs e)
{
if (SomeChangeEvent != null)
{
SomeChangeEvent(this, e);
}
}

View 1 Replies

DropDown List (in Update Panel) Causing FULL PostBack?

Jan 26, 2010

I'm using the same thing on different page and it works fine in there, but on this specific page, this is not working.

Here's what I have:

<asp:UpdatePanel ID="upMain" runat="server" UpdateMode="Conditional" Visible="true" RenderMode="Inline">
<ContentTemplate>
<asp:DropDownList ID="ddlNewService_PortTelco" runat="server" Width="250" CssClass="dropdown" AutoPostBack="true" OnSelectedIndexChanged="Provision_PortedTelcoChanged"></asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>

On the way before the DropDown there is one DIV (html one), and then few asp:Panels.

View 3 Replies

How To Access A User Control's Parent Form's Controls Inside The User Control's Code Behind

Jun 11, 2010

I have to access the parent form's controls inside an event handler method on my user control's code behind.

View 4 Replies

AJAX :: Show Popup Control When The Page Is Loaded?

Jul 27, 2010

I am using Modalpopup from Ajaxtoolkit,I want to show popup control when the page is loaded.

I don't want to click on LinkButton or Button,actually i want show it in "pageload".

View 3 Replies

Access Property Of Parent Page In User Control?

Oct 25, 2010

I have a hidden field on my default.aspx page. Within default.aspx page I have a user control which has a label on it. I need the label to display the value on the hidden field. How can I go about this?

View 1 Replies

C# - Calling A Method On The Parent Page From A User Control?

May 3, 2010

I am using a user control that I created (just a .cs file not an .ascx file), that does some magic and depending on a value generated by the control, I need it to do something on the parent page that is 'hosting' the control. It needs to call a method under certain circumstances (method is on the parent control).the control is placed on the parent page like so:

<customtag:MyControl ID="something" runat="server" />

I'm dynamically creating buttons etc on the control itself but when a button is clicked, let's say for example that there's a text box on the control and if the value of the textbox is "bob" it needs to call a method on the page that's housing the control...how can I accomplish this?

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

Web Forms :: How To Apply The Stylesheet Of A User Control To The Page Its Getting Called From Parent Page

Jan 31, 2011

I have created one user control for changing the theme of the page where i have several buttons and on click of each button i am applying the theme of clicked buttons color and for that i have created several css files like red.css, blue.css , green.css etc.

now i want to apply this theme to the page but i am not able to do that from the user control as because i am not getting the stylesheet property in the page and thus i am not able to work further.

can anyone tell me how can i apply the theming from user control to the page its being called.?

View 2 Replies

Web Forms :: Updating A Grid In The Parent Page From User Control?

Jun 14, 2010

Basically, I have a user control with a set of input controls such as textboxes and radio buttons. It also has a button along with these controls. What I want is that when the user clicks this particular button, the data entered in the input fields must get updated into a grid in the parent page.

View 3 Replies

C# - How To Access A Deeply Nested User Control On The Parent Page

Sep 15, 2010

I have a login control and at is nested 2 deep in a header control i.e Page --> Header Control --> Login Control. I cannot get a reference to the control on the page using FindControl. I want to be able to set the visible property of the control like

[code]....

I ended up using a recursive FindControl method to find the nested control.

[code]....

View 4 Replies

Access User Control DataGrid Controls From Parent Page?

Feb 18, 2011

here my code-

GridView gvCondition = (GridView)this.FindControl("ucCondition").FindControl("gvCondition");
gvCondition.DataSource = objConditionFieldCollection;
gvCondition.DataBind();

but it is throwing as exception Object reference not set to an instance of an object.How can I access user control's gridview control from parent page?

View 1 Replies

Web Forms :: How To Call A Function Of User Control From The Parent Page

Nov 21, 2010

how to call a function of user control from the parent page?

I have a user control inside of default.aspx page, And I have a function in the code behind of user control. I need to call that function from a code behind of default.aspx

View 5 Replies







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