Asp.net - Accessing POST Data From ASCX User Control On Parent Page?

Nov 1, 2011

I have an ASP.NET page (WebForm) on which I set the content of a central DIV by dynamically loading one of five user controls during Page_Load, dependant on the stage of the application.

One of the user controls contains radio buttons and a text box together with a submit button. What I want to do is process that information when the form is posted using the submit button.

I could do this with an AJAX call using jQuery, but I don't really want to do that, so I'm trying to access the form data on postback, but on page load following the postback the data is not present in the Request.Form object.

Looking at what I need to do it seems pretty simple and I'm sure is once you've got your head around it, but I can't find out how to carry this out. Some of the things I have read refer to event bubbling, but that doesn't make too much sense in this scenario.

EDIT: To clarify, I want to post the page back to itself to capture the values from the form elements via the Request object, store them in the database, and then display a confirmation message (or something else) on postback, and not re-display the same control again. So I won't be loading the same user control again.

View 3 Replies


ADVERTISEMENT

Asp.net - Enable/disable Web Elements Of A Parent Aspx Page From The Child Ascx Page?

Jul 20, 2009

I have an aspx page with three web controls: one to control the List Users page, one to control the Edit Users page, and one to control the Add User page. I have discovered a method for accessing these elements, but it seems to be limited. Here is what I have done:

Protected Sub editUser(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs)
'set selected user from gridview.

[Code].....

This works in most cases. However, I am unable to access the "enabled" attribute of these web controls. Why is this, and how might I access that attribute?

View 2 Replies

Asp.net - Access Control From Parent Aspx From Its Child Ascx?

Mar 29, 2012

I try to access the MainContentBlock control from the aspx, but unable to do so. In the aspx file I have registered both controls:

[Code]...

View 3 Replies

Asp.net - Access Parent Page Property From User Control?

Nov 4, 2010

Trying to access a property from the parent page on my user control.

Here's the start of my default.asp codebehind:

Partial Class _Default
Inherits System.Web.UI.Page
Private _selectedID As String = "74251BK3232"

[Code].....

I'm getting the error "selectedID is not a member of System.Web.UI.Page"

View 2 Replies

For A User Control With A Listbox Expose The Selected Item To A Parent Page?

Oct 27, 2010

I have a simple user control which wraps some logic around an AutoCompleteBox. This question could apply to any ItemsControl control like a dropdown or listbox though.

<UserControl>
<Grid Background="White">
<sdk:AutoCompleteBox Name="myACB" ItemsSource="{Binding myData}" />

[code].....

View 2 Replies

Class Not Visible In Another User Control (ascx.vb)?

Jun 3, 2010

I use the same nemespace in both user controls. I create a class in one of them and I want to be able to call it from another class but it is not visible. It is public.I specify full namespace and can not see it. How do I do that?

View 3 Replies

Package A Web User Control (.ascx) In A DLL For Use In Other Applications?

Jul 25, 2010

I have developed a paging control that I would like to use in a variety of applications, both C# and VB.NET.I'd like to package the entire thing, markup and all, into a DLL which I can add as a reference from my other applications' bin folders. If this is not possible, or is a very bad idea, what is the recommended method for deploying a web user control amongst multiple applications?(I like how easy it is to utilize Ajax Toolkit controls from a single DLL, although I'm not sure if those are custom controls or web user controls)

View 1 Replies

Passing Structured Array To User Control ASCX Is Asp.net?

Jan 12, 2009

Code:I have this issue ....in asp.net 2.0 MSVS 2005 ' I said user control, I mean web control ..ie ascx page in asp.net

1 STRUCTURE MyStruct
2 X as Integer
3 M as double
4 Z as string

[code]....

View 4 Replies

C# - Post XML Data To Aspx Page And Reditect To The Page From Code Behind?

Aug 16, 2011

I need to post some xml data to a different aspx page and redirect to the same page.I tried the following code it does post to the page sucessfully but i need to redirect to the same page with posted data

[Code]...

View 2 Replies

Control Child Popup Page From Parent Page With Program?

Nov 18, 2011

Using vb.net on an aspx code behind event, is there away to tell from a parent page if the child page popup is open, and then close the child page if it is truly open based on some event on the parent page, like clicking a gridview edit link, again?

View 1 Replies

Retrieve A Querystring Value From An .aspx Page And Pass It To Ascx Page?

Jul 8, 2011

Is is possible to retrieve the ID value from the Request.QueryString from a aspx file and pass it onto a ascx file in order to successfully update a profile using the retrieved ID?

View 4 Replies

Use Parent User Controls From Externally Loaded User Control?

Jun 2, 2012

i have a windows from project and in that project i created a user control lets call itcustombutton1 now i can use that control quite easily either at design time or runtime by creating a new instance of it like

View 1 Replies

Bind Property Of User Control To One Of The Parent Control's Fields?

Dec 30, 2011

If I need access to the value of a user control's property BEFORE PreRender, would I need to base the custom control off of one of the preexisting data controls (repeater, listview,etc.)?One of my user controls features a gridview control that is configured based on the user control's properties on which it resides. Several of the key properties alter the SQL Statement for the underlying recordsource. I'm now in a situation where the property that sets the WHERE statement for the SQL Statement needs to tied to a value in the user control's parent FormView. Think of the formview as displaying a customer detail record. The user control takes the customer's account number and then displays data from a related table such as Customer Contact Names. Since the gridview is created before the control's prerender event, working within the prerender event doesn't seem efficient.

View 1 Replies

Find And Interact With A User Control On Page From Separate User Control?

Oct 17, 2011

I have an aspx page that has two different user controls. I want to find user control A and be able to set properties, etc., from user control B.

I was thinking I could do something like this:

Dim CMFilters As Control = Me.Parent.FindControl("CMFilters")

...but that doesnt work to be able to set properties and call methods. I somehow need to get the user control and and declare it as that user control type.

View 2 Replies

Make An Application That Post Data To A Joomla Login Page?

Oct 17, 2009

i am trying to make an application that post data to a joomla login page but the only thing i get back is cookies is not enabled.

Function GetPage(ByVal Url As String) As String
Dim CookieJar As New Net.CookieContainer
Dim enc As Encoding = Encoding.GetEncoding(1252)
Dim Data As Byte() = Nothing

[code]....

View 1 Replies

Accessing Data From DataList In Page Load

Jul 29, 2011

New to VB.net, and trying to re-factor an 'old-skool' ASP page where all the page logic is happening on the .aspx page itself, to code-behind. Basically, I have a button that has a state, either on or off. If on, I set a hidden field to 1, if off, I set it to 0 (the default when a user visits the page).The goal is to simply change the message I am sending to the user.[code]The above code produces the following effect: when I click the button, setting the state to 1 and the page reloads, in Page_Load, I am getting zero results from the If dlList.Items.Count > 0 Then check, and thus am showing the 'No results' message, but the actual asp:DataList on the MyPage.aspx page is returning results... and then if I click the button again, setting it back to 0, in Page_Load, the datalist is now returning results, so I set the text to 'Results', but again, the control on the MyPage.aspx page behaves correctly, and shows no results, as expected. Now keep in mind that the above works perfectly in terms of checking the number of results if I move the If dlList.Items.Count > 0 Then page logic out of Page_Load and back to the MyPage.aspx file, it all works fine (i.e. results when state = 1, none when state = 0)

View 2 Replies

Asp.net - Set Master Page On Page Preinit Based On Custom User Control Method Result?

Apr 27, 2011

I have a user control that checks if a certain query string and session value are present then returns a boolean based on that, if it's true I want to set the master page. The page is throwing an Object reference exception when it tries to call the method EditUser1.UserAuthorization(). Why is this happening? I imagine that the method doesn't exist at that point in the stack. Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInit

[Code]...

View 1 Replies

Access A Page Variable From User Control Placed On That Page From VB?

Dec 27, 2009

I want to access a page variable from a user control placed on that page. All the solutions work in C# via casting to the page class. The problem is that this doesn't work in VB. The page class is not selectable from the Intellisense dialog. Manual typing results in the error type not defined. It is strange that C# can do this without a problem. What is the proper solution for this in VB? I had other cases where I needed to access a control on the main page. C# again uses a cast to the page class to access the control. This doesn't work in VB again. So how can I access the page class from a user control in generell?

View 5 Replies

Jquery - Colorbox- Get Value From Popup (Child.aspx) Page To The Parent (parent.aspx) Page?

Jun 27, 2012

I have 2 pages. parent.aspx and child.aspx. In parent.aspx, i use colorbox and send some value for the child.aspx to popup.

[code]...

child.aspx will popup and shows ASPxGridView base on the value passing from parent.aspx. User will select the data from ASPxGridView. the selected data need to send back to the parent page. I code it in child.aspx.vb page.My problem is how can i get the value from child.aspx.vb and pass it to parent.aspx ?

View 1 Replies

User Control Accessing A Form Within The Project?

May 1, 2010

I have a "windows form" user control--that is, not on a web page etc. This user control has a form within the user control project. However, code from within the user control can't 'see' the form even though it is a public class---I don't understand why this is the case.

So how can I access the controls (a couple of radio buttons) on the form from code within the user control? I tried creating public properties on the form to return the state of the radiobuttons, but this still doesn't work. I get a "Reference to a non-shared member requires an object reference." error

Should I not be able to see the form since it is a public class?

View 2 Replies

Get Parent Form From User Control?

Oct 22, 2010

I'm creating a user control that contain ToolStrip and some ToolStripButton, and i named it as 'myToolbar'.

This myToolBar will be put on all forms.

One of the ToolStripButton function is to close the form.

this method was created in user control object[code]...

View 6 Replies

Dynamically Get User Control's Parent Tab's Index?

Apr 14, 2012

I have a user control that is created within a tab control every time a user creates a new tab, so each tab on a tab control contains a new instance of the user control. From within the user control I would like to get the parent tab's index, so that I can dynamically alter properties of the tab, such as the tab's title.

View 17 Replies

Asp.net - Adding To Page Control Collection From Inside A User Control?

Feb 12, 2011

I have an asp.net usercontrol which represents a "popup" dialog. Basically, it's a wrapper for the jQuery UI dialog which can be subclassed to easily make dialogs. As part of this control, I need to inject a div into the page the control is used on, either at the very top or very bottom of the form so that when the popup is instantiated, it's parent is changed to this div. This allows "nested" popups without the child popup being trapped inside the parent popup.

The trouble is, I can't find a safe way to inject this div into the page. A usercontrol doesn't have a preinit event, so I can't do it there, and calling Page.Form.Controls.Add(...) in Init, Load or PreRender causes the standard exception "The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases."

I thought I had found a solution by using. ScriptManager.RegisterClientScriptBlock(Page, Me.GetType, UniqueID + "_Dialog_Div", containerDiv, False) which seemed to work well normally, but recently a coworker tried putting an UpdatePanel inside the dialog and now she's getting the error "The script tag registered for type 'ASP.controls_order_viewzips_ascx' and key 'ctl00$ContentBody$OViewZips_Dialog_Div' has invalid characters outside of the script tags: . Only properly formatted script tags can be registered."

How are you supposed to add controls to the pages control collection from inside a user control?

View 2 Replies

ASP.net User Data Getting Crosses Between Users Accessing Objects?

Jan 4, 2010

I've got a website and we just had a huge jump in traffic. Now all of the sudden we're getting sql parameter errors left and right. We switched to a new sql server a few weeks ago and everything has been fine but the added traffic seems to be breaking us.I have a data access class that is called when each user trys to logon. It runs through several tasks before finally updating the users last login date and forwarding them to the administration section.

What I'm seeing from the trace logs suggests that when I'm logging in the first several tasks are using my data (lets say user=birk pass=word). But at some point the accessor class starts sending over the data from someone else who's trying to login (lets say user=abcxyz).Every connection we make to the server is closed when we're finished with it. I'm nulling out all of the accessor objects when I'm finished with them. But somehow different user data from different sessions are making their way into other peoples instances of the object.

I'm not using session/application/cache/viewstate to store the objects so I'm not really seeing how they could edit eachother... Its just really weird and I'm not sure how to even go about researching the problem.This is roughly the accessor class... I trimmed out some of the parts that weren't reliant to the issue

Imports Microsoft.VisualBasic
Imports System.Data
Imports System.Data.SqlClient[code]......

View 3 Replies

Asp.net - Find Control On Aspx From Ascx?

Jun 16, 2009

I'm trying to find a label on an aspx page from a user control (ascx) on said aspx page. Obviously Page.FindControl("lablel1") is not working. Do I need to add in ClientID somewhere?

View 7 Replies

Asp.net - Finding An Ascx Control Inside Aspx?

Dec 2, 2011

I'm finding a dropdown in an ascxcontrol on my aspx in the following way.

Dim cp As ContentPlaceHolder = DirectCast(Page.Form.FindControl("ContentPlaceHolder1"), ContentPlaceHolder)
Dim ascx As UserControl = DirectCast(cp.FindControl("drpType"), UserControl)
Dim drpType As DropDownList = DirectCast(ascx.FindControl("drpType"), DropDownList)

Is there a faster way without having to acces all the elements on the page?

View 3 Replies

Asp.net - Send A XML String To An ASCX Repeater Control?

Nov 7, 2011

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 with the info needed to feed the Repeater. The problem is that I don't know how can I pass the XML string (or the DataView or DataSet) from the aspx to the ascx file so as I can render the info.

View 1 Replies

Page Should Not Post Back The Whole Page On Submit?

Feb 17, 2012

I have an ASP.NET page with a Submit button. When I click the button my code runs and then the page reload/refresh....the whole page gets posted back.

View 4 Replies

Asp.net - What Event Is Called When A .ascx Control Is Set To Visible / How Can It Be Handled

Jul 20, 2009

If I set a .ascx control's visible attribute to true, what event is called? What method can I create in that control's codebehind to act on this event?

View 1 Replies

LoadControl For Same Ascx Control Multiple Times In A Placeholder?

Feb 7, 2012

I have a UserControl that has a simple repeater inside. It has a property called data which when passed into the control populates the repeater using the standard databinding.

On a page I have a placeholder.

I have a loop which does the following

Dim qDetail As New UserControls_ReportDataTable
qDetail = DirectCast(LoadControl("~/UserControls/ReportDataTable.ascx"), UserControls_ReportDataTable)

[Code].....

View 1 Replies







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