MVC :: Strange Behavior On Form Submit?

Oct 14, 2010

i have a strange issue happening while submiting a form:i have this in my form:

<input type="radio" name="type" onclick="document.getElementById('Type').value='Publiser';" />Publisher <br />
<input type="radio" name="type" onclick="document.getElementById('Type').value='Advertiser';" />Advertiser
<%: Html.TextBoxFor(m => m.Type)%>

the javascript is working perfectly and changes the value of the textbox.the problem happens when i submit the form - what is extracteed by the model from the textbox is the string "on", and after the submit, it also changes the value of the textbox to "on".when i load the field with a value from the model, it goes ok, and does not change

View 2 Replies


Similar Messages:

Asp.net - Getting DropDownList Value Is Generating Strange Behavior?

Jan 3, 2010

I have a DropDownList on a page

[code]...

The problem I am having is that the following code is setting ParentID to 0 (which to me, obviously shouldn't be happening.

View 1 Replies

DataSource Controls :: Strange Behavior Of Cmd.ExecuteScalar()?

Jul 27, 2010

I have a simple procedure which updates a table. The procedure works fine and I have tested it in Management Studio. However when I am calling that procedure from code, nothing is happening. cmd.ExecuteScalar returns null when it should return the ID.Has anyone faced anything similar? Any pointers as to how this can be resolved?

View 3 Replies

AJAX :: Strange Behavior With GridView In A User Control?

Feb 6, 2010

I've got a user control that is displayed via a PopupControlExtender. The user control is a GridView that dynamically adds columns to the control to display the results of a SELECT statement. The PopupControlExtender correctly displays the control and the control displays the neccessary columns. However, when the control is first displayed, the column widths are ignored, despite that they are explicity set. If the control is displayed and then hidden, the column widths are acknowledged the next time the control is displayed.

Here's the user control when first displayed

[IMG]http://i285.photobucket.com/albums/ll48/chyron7/Miscellaneous/screenshot.jpg[/IMG]

Here's how its display after the first time

[URL]

View 4 Replies

Web Forms :: Strange Behavior MultiLine TextBox And GridView?

Nov 15, 2010

I have strange behavior when changing from ItemTemplate to EditItemTemplate. both the ItemTemplate and EditItemTemplate contain the same textbox with multiline. Except the ItemTemplate got the ReadOnly parameter. When the row is getting in EditMode and I enter the textbox everything is disabled. I click on another column that contains a label instead of a multiline textbox and get back in the textbox I can do everything. When I enter in the same row another MultiLine textbox I cannot do anything until I click on a label and get back in that TextBox. When the textboxes are in normal mode I don't seem to be having this issues. What is changed between the MultiLine and SingleLine textbox? What kind of PostBack or something could cause this strange behavior?

View 2 Replies

Web Forms :: Strange Dropdown List Behavior On Page Load?

Apr 3, 2010

I have a page with 14 dropdown lists. In the first page load (ie. not isPostback) I set the selectedIndex of the dropdownlists individually but I find that they are all set to the value I use for the last dropdownlist set. Here is the code

comboFirstJudge1.SelectedIndex = 0
comboFirstJudge2.SelectedIndex = 0
<so on for all the dropdown lists until the last one>
comboFirstJudge14.SelectedIndex = 4

The result is that all dropdown lists have SelectedIndex = 4. If I run the same code on a postback it works just fine (the first lists have SelectedIndex = 0 and the last one = 4).

View 6 Replies

Forms Data Controls :: Strange Behavior After Upgrading To Win 7/Framework 4.0?

Feb 9, 2011

I have a site that was sucesfully upgraded to Framework 3.5 on Vista with VS2008. Now however after installing VS2010 and upgraded to Win 7 wierd things are happenning and was wonderring if any of you have experienced this and how you've dealt with it.First thing I notice in my main page that the four user controls are not in alignment. They should appear side by side in a single row, however now they spread acros two rows with one on top and three on the bottom. Also my graphics and navigation is not where they supposed to be. Just for comparison, if run the existing solution on Win 2003 with VS2008, it works like it supposed to. All the formatting is handled in .css and that didn't change either.

[Code]....

[Code]....

View 1 Replies

Web Forms :: CheckBox Oncheckedchanged Event Causing Strange Behavior On Postback?

Jun 11, 2010

I have an issue that seems to only happen on my production server. I show or hide table rows whenever the buttons are clicked. However, when I do a postback on the checkbox, all of the rows become visible and the textbox stays empty. It works correctly on my test server and local workstation, just not in production.

Here is the markup...

[Code]....

Here is the code behind...

[Code]....

Here are the unexpected results whenever I check the chkShow2 checkbox... I am guessing this is a configuration issue on the server.

View 1 Replies

Control - ParseControl In Dotnetnuke Changing Onclick To Javascript Instead Of C# Method Provided, Strange Behavior?

Feb 18, 2010

Having some strange behavior here. I have some XSLT which generates some html with a few ASP.NET Link Button Controls

String mstring = sw.ToString();
var myctrl = Page.ParseControl(mstring);
foreach (Control Control in myctrl.Controls)

[code]...

View 1 Replies

Web Forms :: IFrame Form Data Capture Upon Parent Page Form Submit Action

Jun 8, 2010

I have a web form called default.aspx which has a form with user information. In addition to this, I have an iFrame on the same page that displays a page Secondary-Form.aspx that has a few additional dynamic data fields. I need to do two things.

1. I need to pass the parent form data in real time to the iFrame page to refresh its content and modify it's fields accordingly. Example: If the user submits their Vehicle Choice as Car on parent form, the form item in iFrame will display a radio button that says Honda, and if the user submits their Vehicle Choice as MotorCycle in the parent page, the iFrame will display Harley Davidson as the radio button choice

2. The submit button is on the parent page. I want both pieces of this information (from the parent page, as well as iFrame selection) to be passed to a server side ASPX page to process this information.the default.aspx and Secondary-Form.aspx files are located on different domains.

View 2 Replies

Submit Form Cause Validation Error In Other Form?

Oct 3, 2010

i have post detail page (asp.net, umbraco cms), with search box and post replay box.the problem is that when user try to search using the search box, it cause validation error in the post replay box.the search is client side form.the post replay is server side form.you can view it live at:[URL]

View 1 Replies

How To Submit The Values Of A Form To Another Form In A Different Application

Feb 28, 2011

I have two asp.net applications webapp1 and webapp2, in each application i have a asp.net form Deafult.aspx

I want to do a form submit from Default.aspx in webapp1 and recieve the value in webapp2.

I tried to do it with simply setting action ="webapp2 location" but it is throwing the bellow error

Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.

I even added the machinekey element to web.config

but it is still showing the same error.

This is the code for webapp1 form which sends data to webapp2

[Code]....

View 2 Replies

MVC :: Submit A Form Through Javascript?

Jan 25, 2010

How can I submit a form if I change a selected value in a select box.

Of course I can pass Javascript to the HTML.DropDownList like this:

[Code]....

Is there a possibility to manipulate the attributes of the form tag?

View 3 Replies

Form Doesn't Submit In IE9

Feb 20, 2012

I'm quite fresh when it comes to VB.NET an i tried to make a form. Submits very nice in IE8, FF and Chrome, but IE9 fails to submit it.

The code i have:

<%@ Page Language="VB" Debug="true" %>
<% @Import Namespace="System.Web.Mail" %>
<% @Import Namespace="System.IO" %>
<script language="vb" runat="server">
Sub Send2Mail (sender as Object, e as EventArgs)

[Code] .....

I replaced some mailadresses to a imaginary one.

View 5 Replies

How To Create A Submit Form

Apr 28, 2012

I have been making a site and i need a submission form. I need to submit the form but i don't know how to do it. Here is the code for the page so far so you can see what i am trying to submit.

Code:
<%@ Page Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false" CodeBehind="MembersOnly.aspx.vb" Inherits="WebApplication4.MembersOnly" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="Content1" runat="server" contentplaceholderid="MainContent">
Products:<br />

[Code] ....

View 1 Replies

How To Submit Html Form Using Asp Button

Mar 15, 2011

how can i do this........

View 3 Replies

Web Forms :: Using Iframe To Submit A Web Form With 4.0?

Apr 22, 2010

This post is related to the issue of using javascript with asp.net form found here:[URL]I figured out that the issue I am having is not that the javascript cannot find the control but rather that the ajax frame I am using, for some reason does not allow me to find the controls.Here is how I submit my form in VS 2008 which is working fine:

<form id="form1" runat="server" target="ajaxFrame" defaultfocus="userName">
The ajax frame below, is on the login page right before the body closing tag:
<iframe id="ajaxFrame" name="ajaxFrame" src="" style="visibility:hidden;"></iframe>

When the user clicks the login button, all the vb.net code on the code behind page is executed and some hidden fields are populated with some login/user validation data. The iframe then takes the user name and password (using jquery and some custom javascript) and automatically redirects and login the user on another website where an asp/js login page is used.For some reason, this exact setup does not work with asp.net 4.0.

View 4 Replies

Access :: How To Submit Two Form In Same Time

Feb 1, 2011

how to submit two different form in same time?

The form is in one page, and i cannot do it in one form because there are two different reference table used.

View 5 Replies

On Form Submit Populate PDF Or Word Doc

Feb 1, 2011

I have a form that submits to a database.

What I need to do is when the data submits redirect the user to a page where they can download a personalised certificate in either PDF or word, which has been partly populated by the data entered in the web form.

View 5 Replies

Submit Form When Enter Is Pressed?

Dec 22, 2010

I have an aspx page with many buttons and i have a search button whose event i want to be triggered when user press enter.How can i do this?

View 4 Replies

C# - Aspx Submit Form Error?

Dec 14, 2010

Im working with asp.net framework 4.0 and I have this code:

form id="form1" runat="server" method="get" action="Profile.aspx"

// some code


asp:Button runat="server" ID="SubmitButton" Text="Submit"

Each time i click the submit button i get this error:Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.

View 2 Replies

Web Forms :: Button In A Form That Does Not Submit?

Aug 26, 2010

I've been trying to figure this out all afternoon but my google-fu seems to be failing me. I'm setting up a page with a fairly large form, which has one field that is going to require some kind of popup page that will allow the user to perform a lookup.

At the moment I'm only prototyping the page so I'm actually only attempting to a the button up to fire an alert when the button is clicked instead of generating a lookup screen. However it seems that no matter what I do the button causes the form to submit.

I remember one of the very first ASP .NET beginner videos I ever watched went through configuring a button to perform actions without submitting, but I can't seem to figure out which one it was.

View 6 Replies

Google Check Out Form Submit URL?

Nov 9, 2010

I need to select Merchants(Merchant ID) dynamically,ie I am in a situation where I cannot place the static code like action=https://checkout.google.com/api/checkout/v2/checkoutForm/Merchant/1234567890 accept-charset="utf-8">

I would like to pass the MerchantID as a input parameter,ie I would like my site clients to choose their desired merchants dynamically... something like <input type="hidden" name="MerchantID" value="1234567890">

This is very much POSSIBLE with PAYPAL...but i need it from google....

View 1 Replies

C# - Submit A Form That Is Saved In A String?

Aug 21, 2010

I have a HTML form a string variable.e.g: there are below string in FormBody variable string.

<form id='paymentUTLfrm' action='...' method='post'>
<input type='hidden' name='CardAcqID' value='131211234234667' />
<input type='hidden' name='AmountTrans' value='1' />

[code]...

View 2 Replies

Web Forms :: How To Stop Form Submit

Feb 10, 2010

I want to stop the form submit, i mean i want the control to stop or proceed i am using validation control,if validation contrrol is satifies it will submit the form, i want even if the valdation control satifies its condidtion , i want stop or control the form submission through javascript or server-side any how

View 8 Replies







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