DropDownList Within Composite Control Is Losing Selected Value On Postback

Feb 23, 2010

I am building a composite server control that currently only has a TextBox and a DropDownList. Here is the code in all its foetal glory:

[Code]....

The control appears to work correctly across postbacks, that is until declarative values are set, e.g.:

<squee:Address runat="server" ID="a" Street="123 Fake St" State="VIC" />

After this, the text box continues to work correctly, but the _state member does not pick up the posted back values and instead just sticks to the declared value. I've checked the raw posted values in the Request object, and the new value for the list's UniqueID is there, but _state doesn't pick it up.

View 1 Replies


Similar Messages:

Custom Server Controls :: Returning Dropdownlist Composite Control With Selected Item?

Feb 9, 2010

I have a composite control that returns a different control depending on a property value. The works however I can't seem to set the value of a textbox or the selected item in a dropdown list. Code does not produce error. What am i missing here??

[Code]....

View 4 Replies

AJAX :: CascadingDropDown Losing Selected Value On PostBack?

Nov 19, 2010

I am using the AJAX Contol Toolkit and 4 CascadingDropDown extenders with an ODBC connection in a Web Service. The original load of values in each level works great. I then use these values to set the create the SQL for the SelectCommand for a Gridview.

The problem I am having is that when I submit the page to perform the search, the first 2 dropdowns repopulate and set the selected index accordingly, but the 3rd dropdown does not retain its selected value. It does populate with the values, but the selected value does not get set.

The correct values are available for the SelectCommand which returns the correct values.

View 1 Replies

Web Forms :: Dropdownlist Losing Selected Value And Resetting Filter?

Apr 8, 2010

I have a gridview and dropdownlists that I want to use to filter the gridview by. I am trying to mimic the Filter functionality in Excel.The current problems I am having are:The dropdown is losing the selected value during the postback. It selected value goes back to All.I cannot use the dropdownlist to select "All" to remove the filter.ode is below.Page Code:

<%
@
Page

[code]...

View 3 Replies

Forms Data Controls :: Losing Selected Value From A Dropdownlist In Gridview?

Jan 11, 2011

I have the following gridview...

[Code]....

And inside that gridview you can see I have a dropdownlist called dpdTrueFalse. That dropdown has two values which I am loading from code behind like this...

[Code]....

I have a submit button outside that gridview that checks each row and the selected value in the dropdown. But for some reason, even if you select another item in the dropdown, it always selects the first item in the dropdown when I click the submit button. I reckon its because of the postback.

View 5 Replies

Web Forms :: How To Pass Selected Value Of DropdownList To A User Control On Postback

Feb 25, 2010

I need to create a user control which will be loaded according to the selected value of a dropdownlist. The Dropdownlist is not the part of Control. I want to pass the value of selected value of dropdonwlist to my user control and the user control will load according to the Value. For not postback it work fine. But when the page is postback, that is when i select a item form dorpdownlist, the user control is not loaded.

View 6 Replies

C# - Simple Composite Control - Postback Not Working?

Nov 17, 2010

I am trying to make a simple composite control - just a label and textbox - but the postback isn't being picked up by the control.I haven't implemented IPostBackDataHandler as according to this its not necessary - the TextBox control should tie in automagically. A composite control that includes a TextBox need not worry about postbacks, as the embedded control will work it out with ASP.NET automatically.

class TestControl : WebControl
{
Label _label;

[code]...

View 1 Replies

Add Ability To Provide List Items To Composite Control With DropDownLIst?

May 7, 2010

I'm creating a composite control for a DropDownList (that also includes a Label). The idea being that I can use my control like a dropdown list, but also have it toss a Label onto the page in front of the DDL.

I have this working perfectly for TextBoxes, but am struggling with the DDL because of the Collection (or Datasource) component to populate the DDL.
Basically I want to be able to do something like this:
<ecc:MyDropDownList ID="AnimalType" runat="server" LabelText="this is what will be in the label">
<asp:ListItem Text="dog" Value="dog" />
<asp:ListItem Text="cat" Value="cat" />
</ecc:MyDropDownList>

The problem is, I'm not extending the DropDownList class for my control, so I can't simply work it with that magic. I need some pointers to figure out how I can turn my control (MyDropDownList), which is currently just a System.Web.UI.UserControl, into something that will accept List items within the tag and ideally, I'd like to be able to plug it into a datasource (the same functions that the regular DDL offers).

I tried with no luck just extending the regular DDL, but couldn't get the Label component to fly with it.

View 2 Replies

Custom Server Controls :: Extending A Control And Losing Values On Postback?

Nov 24, 2010

I've created loads of user controls, but this is my first time dealing with extending a server control. The problem I'm getting is that the base control's data is not being persisted across postbacks in a Master/Content page.I'm actually trying to get this working using a Telerik control (for my sins), but the same issue happens with a standard Web TextBox control. Code:

[Code]....

Now, I've copied the way I handle the control state as I do it with user controls (ControlState), and it isn't working. Can someone point me in the right direction please? All the examples I find refer to creating user controls, not extending existing controls. Specifically why nothing is being persisted on post back.

View 7 Replies

C# - ViewState ["sample"] Variable Not Retaining Value On Postback In A Composite Control?

Oct 18, 2010

I have created a composite control with sample details as follows. Basically, the first time on page load the control sets a view state variable and the problem is that on post back (when the button is clicked), the ViewState variable is null. I have researched extensively and I am not able to find a solution. I checked all the Microsoft recommended articles and also from other developers. This approach seem to work for everyone

PS: This code may not work as it is only for illustrative purposes. but this is exactly what i'm doing in my code.

Public class Test : CompositeControl
{
private Button btnTest = new Button();
public string TestViewState[code]....

View 2 Replies

.NET DropDownList Not Retaining Selected Item On Postback?

Nov 15, 2010

I have a ASP DropDownList that gets populated on the Page_Load event, after i select an item and hit a button the selected item gets cleared and the first item in the DropDownList gets selected. (The DropDownList is only populated when the page is not postback)

if (!IsPostBack)
{
List<Country> lCountries = new List<Country>();
List<CompanySchedule> lCompanySchedules = new List<CompanySchedule>();
this.Load_Countries(lCountries);
[code]...

View 1 Replies

Why Does Dropdownlist Selected Option Does Not Cause Postback Second Time

Jan 27, 2010

I have two dropdownlists ,selecting the first dropdown causes postback and second dropdown gets binded...Why does the selected value of the first dropdown,once again selected does not cause postback?

<asp:DropDownList ID="DLMatName" runat="server" OnSelectedIndexChanged="DlMeasurement_SelectedIndexChanged" AutoPostBack="true">
</asp:DropDownList>
protected void DlMeasurement_SelectedIndexChanged(object sender, EventArgs e)
{
[code]...

View 1 Replies

Web Forms :: DropdownList Selected Value Clear (lost) After Every Postback

Feb 25, 2016

I have the problem with dropdownlist value inside gridview.my problem is i have textbox,button with two dropdownlists, dropdownlists are inside gridview.Two dropdownlists are  one is ddlcountry and another one is ddlstates. if i select  country from ddlcountry , country related states comes in ddlstates. after entering  first record value in textbox then button click  textbox value is shown in gridview with two dropdown lists dropdown list, after selecting one dropdownlist country and states, i enter second record value and button click then only country selected value visible ddlstates selectedvalue not visible in first record in gridview...

View 1 Replies

Forms Data Controls :: DropDownList In DataGrid Selected Value Not Being Saved On Postback

Apr 13, 2010

I have a DataGrid that has a dropdown list in an ItemTemplate. Basically, users select a value from the dropdown for each row of the datagrid. When the page is posted back, the selected index of the dropdown list is always reset to 0, and the items are re-bound.

Does anyone know why this might happend? The dropdown items are hardcoded, so there is no external data binding that happens on post back.

View 5 Replies

Data Controls :: Selected Value Of DropDownList Inside GridView Getting Lost On PostBack

Mar 14, 2014

I can not get the Selected Item value in in GridView Dropdowntemplate Feild

I Get Only First index item text value

string ItemSkuCode = ddlIMEntity.SelectedItem.Text + "-" + txtIMItem.Text + " -";
foreach (GridViewRow tempr in gvParameter.Rows)
{
DropDownList ddl = (DropDownList)tempr.FindControl("ddlParameterValue");
// string str1 = Request.Form[ddl.UniqueID.];
if (ddl.Items.Count > 0)

[CODE]..

View 1 Replies

Web Forms :: Disable Postback When Select Dropdownlist To Control Other Two Dropdownlist Value

Mar 25, 2011

I had use a combox to let user select staff name and then it will automatically retrive the responsible recommending officer and approving officer to display in other 2 dropdownlist.

my code works fine but when user select staff name each time, the page will reload once to refresh the dropdownlist.

user complaint and don't want the page reload every time, how can i disable the postback? I need to use ajax?

[Code]....

[Code]....

View 5 Replies

Forms Data Controls :: How To Maintain The Selected Item In Dropdownlist (in Template Field) In Gridview After Postback

Mar 25, 2010

i have a gridview which consists of databounds and dropdownlist control. When I press the Add Grid Row Button, it will insert a row. Now my question is, if the user selected an item in dropdownList in the firstrow and the user click the AddGridRowBtn Again which will generate the 2nd row, how would i maintain the selectedItem in the dropdownlist after postback?

Source For Gridview:

[Code]....

Add Row Code

[Code]....

[Code]....

And For Grid Row Created Event

[Code]....

View 5 Replies

C# - Losing The Session After The Postback?

Sep 1, 2010

I have been using session variables in my asp.net application for passing the next property:

[DefaultValue(true)]
public bool IsModificationMode
{
get
{
return (bool)Session["ModificationMode"];
}
set { Session["ModificationMode"] = value; }
}

In the PageLoad, I set it's value.

Now after the Postback, I am losing it's value having a a NullReferenceException

View 4 Replies

Losing Textbox Value On Postback?

Jun 9, 2010

In a page I have a link; clicking on it opens a dialog and sets a textbox value for that dialog.

However, once I click on submit in that dialog, the textbox value is null.

Link:

<a href="#" onclick="javascript:expand('https://me.yahoo.com');
jQuery('#openiddialog').dialog('open'); return false;">
<img id="yahoo" class="spacehw" src="/Content/Images/spacer.gif" /></a>

[Code].....

View 2 Replies

Web Forms :: Keep Losing The Selected Value Between Pages?

Feb 3, 2010

I have a 3 page vb.net web application (long story, but it has to be multiple pages). Page one has a datagrid that has rows of data. When a user selects a row, I check to see what "RecordType" corresponds to the row selected. If the RecordType = 1, Page Two loads. If the RecordType = 2, Page Three Loads. The problem I've run into, is that once page two or three loads, all the data is lost. In the gridview, I have the several values in the DataKeyNames, but "loose" them all between pages. Is there a way to pass this data to the next page other than ...Session - I guess I could set the values in the datakeynames as session data.. right?

QueryString - I really don't want to use querystrings, as I don't want users "messing" with the URL.Is there another option available in .NET? I'm kind of hesitant to set sessions, because I'm afraid the values won't get cleared out as needed...

View 4 Replies

Web Forms :: Losing Data Across Postback?

Feb 19, 2010

I have an upload control (csv file) of which I use the stream to retrieve data in a datatable that I then bind to a datagrid, sitting in a repeater control.I have to bind more than one record to the repeater, therefore I need to find a way of storing the stream for each binding, so that I can bind it to the datagrid again, via itemdatabound event of repeater.

I have tried storing the stream in the repeater's datatable but on each postback, the content of the stream gets lost. The stream still exists, but its length is set to 0.I have tried storing it in a session object, but again it is reset to 0.

I have tried using viewstate but I get a xmlserialization error. Saying IXmlSerialization is not implemented.I am desperate to find a work around as I am feeling the pressure at work.

View 3 Replies

Hidden Field Losing Its Value On Postback?

Jun 7, 2010

I have a ascx page where I am using a hidden field to store the value of a the drop down box as it is generated using a google address finder. My problem is that when I try to store the value directly in the hidden field :

hfDdlVerifyID.Value = ddlVerifySS.SelectedValue;

in the event of a button click, the value is stored but on postback is lost again. Whereas, if i try to use Scriptmanager to do it, nothing is stored.

getBuild.AppendLine("$get('" + hfDdlVerifyID.ClientID + "').value = $get('" + ddlVerifySS.ClientID + ").value;");
ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "storeHidden", getBuild.ToString(), true);
// Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "storeHidden", getBuild.ToString(), true);
string test = hfDdlVerifyID.Value.ToString();

[Code].....

View 1 Replies

Losing Most Of The Page Content On Second Postback?

Jul 5, 2010

I have a form with a update panel. This posts the form and validates it. Returning a errorMessage string of any invalid field such as "Field xyz is a required field, Field abc needs to be a quantity"

When I enter incorrect date it posts back fine and displays the text in a div at the bottom of the page which the update panel is aimed at to update. (and only this it should be changing)

This works but the second time I hit say (say i enter invalid data twice) the Complete form will disappear leaving me with just the banner of the site and the error message that is returned.

Ive tried commenting out the entire of the code post back so that the button doesn't actually do anything but it still has the same problem(of course this time it wouldnt have a error message created)

So i can only think it is something to do with the updatepanel itself and how it works but i have been staring at this for ages and have no more ideas!

View 2 Replies

State Management :: Losing Data Between Postback?

Mar 27, 2010

I am in beginner level on developing web pages. I was coding on desktop applications and as you know it is easy to say that web applications are extremely different than desktop applications.

I wonder why data are lost between postbacks.???? And what is the best way not to lose the data belonging to a specific control (especially gridview). Session or viewstate or anything else?

View 10 Replies

State Management :: Literal Losing Value On PostBack?

Dec 13, 2010

Never had this happen before. I just upgraded my site from 3.5 to 4.0. Here's the scenario:

1.) I have a literal on a web form, in an UpdatePanel.

2.) On PostBack, the Literal's "Text" property loses it's value. The ViewState is enabled throughout the page. Further, I changed the Literal to a label and it also has this problem. The TextBox's appear to keep their values.

3.) If I remove all of the Ajax controls (which currently is just the UpdatePanel and the ScriptManager) then the Literal control keeps it's value through PostBacks.

4.) There is no client side JavaScript where I'm manually changing the values of these controls. They are only editted in the server side events.

I have read that setting the AutomaticDataBind property in the web.config could remedy this but I can't find any documentation on it and I don't know where to put it in the web.config to even try it.

View 7 Replies







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