Web Forms :: Custom RadioButton Loses Checked Value On PostBack?

Jan 28, 2010

I am creating a control that inherits from the RadioButton, so that I can set the GroupName property manually. Everything is working okay apart from the fact that when the page posts back, the RadioButton becomes unchecked if it has previously been checked. This is the first time I've tried inheriting from controls, so must be doing something really silly. I would welcome anyone helping me to improve my code so that the control's Checked value persists through postbacks. I am causing a postback using a button, not the actual RadioButton itself, if that makes any difference. Here is my code:

[Code]....

View 13 Replies


Similar Messages:

Postback - .Net RadioButton Loses ViewState

Apr 13, 2010

I'm having trouble with a simple radio set of two radio buttons (I don't want to use a RadioButtonList [RBL] because RBL doesn't allow child controls, and in my case, if you select one option, I want to enable a textbox next to the button; yes you could hack this with jQuery to move the textbox, but that's dirty!). I would check one, submit the form (either explicitly or through AutoPostBack), and the CheckedChanged event would never fire. When the page was reloaded, both buttons would be unchecked, regardless of their initial state on non-postback load or the state before form submission.

form id="form1" runat="server" enableviewstate="true">
<div>
<asp:RadioButton ID="foo" Text="foo" runat="server" AutoPostBack="true" OnCheckedChanged="rbChanged" Checked="true" GroupName="foobar" EnableViewState="true" />
<asp:RadioButton ID="bar" Text="bar" runat="server" AutoPostBack="true" GroupName="foobar"
OnCheckedChanged="rbChanged" Checked="false" EnableViewState="true" />
[code]...

View 2 Replies

Web Forms :: RadioButton - Dynamically Created Not Retaining Checked Value After Postback

Jan 13, 2011

I have a couple of RadioButtons that are created dynamically. But after postback they don't retain their checked property. I also have some CheckBoxes and they work just fine using the same mechanism (code below). I have narrowed down the problem to the "GroupName" property. If I remove it, it works just fine. But I need the RadioButtons to be mutually exclusive.

[Code]....

View 3 Replies

Custom Server Controls :: Custom Radio Button Loses State After Postback?

Mar 24, 2010

I have a custom radiobutton and it renders fine but loses state after postback.

How can it be modified?

[Code]....

View 1 Replies

Web Forms :: Set RadioButton To Checked Dynamically

Sep 8, 2010

I'd like to set one of a few radiobuttons to checked dynamically. They are called rbTheme1-rbTheme7. I can find them (for example the one called rbTheme3) with the code below but how do I set it to true at the loading of the page?

int buttonID = 3;
string buttonName = "rbTheme";
(RadioButton)themePick.FindControl("buttonName" + buttonID.ToString());

View 5 Replies

Web Forms :: Passing Checked Value Of Radiobutton

Jan 12, 2011

well i have two pages 1st Page "Medical Examination" in this page i have two radio buttons "Man" or "Woman"

[Code]....
[Code]....

View 4 Replies

Web Forms :: Radiobutton Not Retaining Its Checked Status Set?

Jan 28, 2010

I am trying to set the checked status of a radiobutton in code, but it doesnt retain after the code-behind execution completes. It still shows the design time checked status.

View 3 Replies

Web Forms :: Radiobutton Checked False Error

Aug 17, 2010

i am having one online test application in default page i have 1st question and 4 options will come and i am having two linkbuttons one is next and the other is previous and after selecting the answer of 1st question and after clicking the next button it is goin to 2nd question that is in the same page and error is this one if i select 1st answer of 1st question the same answer is repeating in 2nd question i want to uncheck this and in 1st question the answer selected should be checked only.

View 4 Replies

Web Forms :: Want The Second Textbox To Hide If The First Radiobutton Is Checked

Dec 28, 2010

I am using visual C# and trying to create a web form (form.aspx for example).The issue is that i'm using two radiobuttons and two textboxes and i want the second textbox to hide if the first(or the second, i don't care) radiobutton is checked(selected).I am typing the below piece of code:

[code]....

View 1 Replies

Web Forms :: Save RadioButton Checked Value Into Database

Sep 24, 2012

I have 4 radiobutton in my page

1-RbtW
2-RbtE
3-RbtN
4-RbtS

I want if users checked RbtW it insert to database "West"

If checked RbtE it insert to database "East"
If checked RbtN it insert to database "North"
If checked RbtS it insert to database "Soutا"

How i can do it?

View 1 Replies

Web Forms :: Checkbox / Radiobutton Checked - Enabled Textboxes Required?

Jun 15, 2010

I have a radiobutton and if it is checked "Yes", then the three textboxes that are disabled in default will be enable. Now that this textboxes are enabled I want this to be mandatory. How could I do this via javascript or code behind? If I do it in code behind then autopostback is need which is unnecessary.

<div>

View 18 Replies

Web Forms :: FileUpload Control Loses Value On Postback?

Sep 11, 2010

I'm having a little problem with my file uploading. Does anybody know how to maintain the value in the FileUpload control between server posts?

I have a form which, among other things, uploads a file. I am using an ileUpload control (created dynamically) to let a user browse their PC for a file and then using the SaveAs method to upload the file to the server.When I'm selecting a file and Click on Next button for processing then selected file is lost.

Same is happening with me with HtmlTextArea (dynamically generated) , the problem was that I was not again re-initializing the controls after postback. What I did is re-initialized it in Init method of placeholder (as I have created/placed all dynamic controls in placeholder ).

But this thing is not working for fileupload control. I found solution in one of the forum is that "use hiddenField Control to transfer the selected file from the client to server"but this mechanism will only help to retain the name of file
in a hidden variable and the FileUpload1.PostedFile.SaveAs(filename) will not work bcz of absense of object (fileupload1).

here is code:

[Code]....

I have done almost the same in different test project , it works . I dont know whats wrong?

[Code]....

How to correct this?

View 8 Replies

Web Forms :: Visible False Loses Data On Postback?

Feb 1, 2011

I have the following simple code:

[Code]....

So when i select "Yes" from the first drop down, the "hiddenDetail" label becomes visible and when i select "No" from q1 the "hiddenDetail" label becomes invisible.The problem is that because i am using AutoPostBack when you select "No" the "hiddenDetail" loses its children (i.e. the label inside it) which is obvious why but i am wondering, is there anyway i can make the "hiddenDetail" invisible (sort of like display:none in style) in VB without losing its children. Or is my only option to work with this in

View 9 Replies

Web Forms :: RadioButtonList Loses Value On PostBack Button Click

May 7, 2015

radiobuttonlist Value is not saved when saving on where the problem is?

<form id="form1" runat="server"> <div> <asp:RadioButtonList ID="rblShippers" runat="server"> </asp:RadioButtonList> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /> </div> </form>

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data;using System.Data.SqlClient;public partial class _Default : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) {

string strConnString = "data source=.;initial catalog=saeed;integrated security=true"; using (SqlConnection con = new SqlConnection(strConnString)) {

[CODE]...

View 1 Replies

TreeView Nodes Always Have Checked = True On Postback Even When Not Checked In UI

Mar 15, 2010

I have a treeview in my .aspx: <asp:TreeView ID="tvDocCatAndType" runat="server" /> Not much else going on in the page -- two <asp:LinkButtons> and one <asp:Label>; the page is a child of a master page, so these controls are within a <asp:Content> control. I populate the treeview in code -- just 3 node levels, including the root node. All nodes have checkboxes, and I initialize all node.Checked to true. I have some Javascript to do the usual check/uncheck up and down the tree as parent and child node checkboxes are toggled.

No matter how many checkboxes I clear in the UI, on postback every single node has node.Checked = true regardless of the state of the checkbox in the UI. This is not the first time I've used a treeview, but I've never had this problem before. I created this page by light adaptation of an earlier project that works fine.

View 1 Replies

Radiobutton In Group (GroupName) Are All Checked?

Jul 22, 2010

So I've got three RadioButtons, They're not in a RadioButtonList because I need to add some textboxes next to each of them.I've added a GroupName, and on the front end they behave as expected. ONLY ONE appears checked at a time.However in the code, if I do:

RadioButton1.Checked = true;
RadioButton2.Checked = true;
RadioButton3.Checked = true;

I would expect only the last one, RadioButton3, to be checked, because they all belong to the same group. This is not the case. All three evaluate to true.... how can that be?

View 2 Replies

.net - Check If A Radiobutton Is Checked In A Group?

Aug 11, 2010

I have group of radio buttons, each group ranges from 5 - 27 radiobuttons. And if any radio button in a group is checked I store 1 in db else I store 0. Now I'm checking each radiobutton using if loop to see if they are checked and set database value. I'm also trying to use the code below. Is there a good/better approach to check if they are checked or not?Current code:

'rname is radiobutton prefix for a given group
'cnt is number of radiobuttons in the group
Private Function RadioIsChecked(ByVal rname As String, ByVal cnt As Integer) As Integer

[code]...

View 5 Replies

Forms Data Controls :: LoginView Inside A Gridview Loses Hyperlink After Postback?

Feb 21, 2010

I have a gridview with columns 'Edit', 'Delete', 'View Results' and other details. The 'Edit' column opens a modal popup to edit the record. The 'View Result' column is in a login view and this column is only visible to users belonging to the group 'Manager' as below:

[Code]....

When the page is first loaded, the hyperlinks are displayed correctly. however, after editing a record and saving the changes, the 'View Results' column loses the hyperlink.

I tried creating a temp hyperlink column outside a loginview control and this seems to work correctly.

View 4 Replies

C# - Radiobutton Checked Change Event Not Firing In Gridview?

Feb 11, 2011

I have a gridview where i have a radio button. What i need is to on the selection of the radiobutton i have to find the datakey of the gridview. Also one more issue with that is , i can select more than one radio button, which should not happen.

View 1 Replies

C# - Radio Button Loses Value On Postback?

May 3, 2010

I have a set of radio buttons for "yes" and "no" values which have a name="choice". "yes" is checked by default. They're both runat="server". I read the choice on postback like below. It works perfectly fine as long as the validation doesn't fail. For example, if I select "no" and validation fails on postback, I still see "no" selected. But if I submit the form after correcting everything, the value read is "yes" on server side! Is this a bug in .net, and if so, how do i fix this?

foreach (string key in Request.Form.AllKeys)
{
if (key.EndsWith("choice"))
return Request.Form[key] == "yes";
}

View 1 Replies

MVC :: RadioButtons Loses Selection On Postback?

Oct 26, 2010

If I have a list of radiobuttons like this:

[Code]....

, when submitting the form and return the untyped View again, the selection is lost. What is the best practise to overcome this in MVC?

My submit-action looks like this as I am also passing an uploaded file...

[Code]....

View 2 Replies

State Management :: Textbox Loses Its Value After Postback?

Oct 18, 2010

There is button(btnOpen) and a textbox (txtResult) in the page.

Once I clicked on btnOpen, a modal dialog will appear, displaying TextBox1 and Button1.

The user is required to type something in TextBox1 and I want to pass the TextBox1.Text into my database but when I try to do that, the value actually = "", which is gone.

So I created this test program to illustrate by passing the value into a txtResult.

Can anyone guide me on getting the TextBox1.Text value?

Besides that, is there anyone to tell more about what does this lines of code do?

[Code]....

The aspx code:

[Code]....

the Code Behind .cs :

[Code]....

View 2 Replies

Data Controls :: Validate TextBox In GridView If RadioButton Inside Same Row Is Checked Using JavaScript

May 6, 2014

if radio button  selected as process in a row then i need check text box is empty or not using jquery or javascript in gridview?

View 1 Replies

User Controls :: FileUpload Control Loses Its Contents After PostBack

Dec 19, 2012

I have gridview. In my griview, i have Fileupload template field.

but, problem is whenever my page get postback fileupload loses its content or selected file.

View 1 Replies

Web Forms :: Disable Dropdown List When One Of Radiobutton List Is Checked

Jan 2, 2013

How to disable two drop downs on checking one of radio button from radiobutton list,,its like radiobuttons with no ID in side <asp:RadiobuttonList> tag. 

View 1 Replies







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