-
I have kind of a unique problem. A friend of mine (Sam) is in very big trouble for counterfeiting money. The police have contacted me for information and of course asked if he used my computer. I had no idea as he usually hangs with my boyfriend. Anyway I see this icon on my desktop, it says sam.aspx...
-
when i submit my form i get the error at the bottom of this post, the feild inquestion is formated as follows DD/MM/YYYY hh:mm i.e. 22/5/2009 06:00 Server Error in '/' Application. String was not recognized as a valid DateTime. Description: An unhandled exception occurred during the execution...
-
I am having a bit of difficulty proxying a request on my site. In theory, this should work webClient.UploadValues(url, "POST", HttpContext.Current.Request.Form); Unfortunately, the form contains a duplicate key "elemKey" When I use HTTP Analyzer and look at the post data it shows...
Posted to
Web Forms
(Forum)
by
gibble
on
05-05-2009, 12:00 AM
Filed under: POST, request, WebClient, form, key
-
I've been researching this for a couple weeks now and I'm no closer to getting it working. I have some regular HTML form code that I got from HubSpot and Salesforce.com to submit data directly to those systems from my site. However, my site is .NET and I can't get it to work well. I've...
-
Hi All, your help is very much appreciated. In this case Google has not been my friend. I am building an MVC application for a UK audience and have a problem where dates entered in a textbox in uk format (dd/mm/yyyy) are being translated to a DateTime field in US format (mm/dd/yyyy) unsuccessfully. For...
Posted to
ASP.NET MVC
(Forum)
by
WooWaaBob
on
04-01-2009, 12:00 AM
Filed under: asp mvc form get, asp net mvc, Asp.Net mvc form error, form parameters, Html.TextBox, internationalization, localization, .net mvc, "ASP.NET MVC 1.0", form, MVC beginner, action, ASP.NET mvc, DateTime
-
Hi everyone, Im stuck now for a few days with a problem in formview. The scenario is: i have a formview wich shows data about a item. Now i wish to edit the items data. I have: 1 2 <h1>General information</ h1 > 3 < asp:FormView ID= "mainView" runat= "server" 4 CssClass...
-
I have a contact form on this site, and 3/5 textbox controls are not showing. They appear in Debug mode, but not when I upload it to the ftp server. The code is exactly the same as the 2 that are showing, so I'm not quite sure what the issue is... Textboxes showing: Name, Body Not Showing: Phone...
Posted to
Web Forms
(Forum)
by
rory584
on
03-12-2009, 12:00 AM
Filed under: text, vb .NET, box, control, hidden, html, Asp.net2.0, form
-
Okay I've looked everywhere for a solution to this problem but I seriously can't find any solution. What I have set up is a site that grabs the iFrame for content, by doing this, I allow the flash music player on the site to play without disruption of page switching. Unfortunately, when I try...
-
I have a form which needs to populate 2 models. Normally I use a ModelBinderAttribute on the forms post action i.e. [ Authorize ] [ AcceptVerbs ( "POST" )] public ActionResult Add ([ GigBinderAttribute ] Gig gig , FormCollection formCollection ) { ///Do stuff } In my form, the fields are named...
-
Hi, Try using the 'defaultfocus' and 'defaultbutton' properties of the <form> element. See http://weblogs.asp.net/scottgu/archive/2005/08/04/421647.aspx for more info. < html >
< body > < form defaultfocus=“textbox2” defaultbutton=“button1” runat=“server”> <...