Search

You searched for the word(s): userid:644080

Matching Posts

  • Re: Remove Security Question and Answer

    after adding this ( requiresQuestionAndAnswer = " false " ) to the membership provider in the web.config I was able to see that Membership.RequiresQuestionAndAnswer is set to false (which is correct) right before I call Membership .CreateUser(...) However CreateUser always comes back with an InvalidQuestion status. In order to get it to work every user has a dummy question and answer. I looked at the source code of CreateUser: http://www.koders.com/csharp/fid18F654F5669AC847044652212BDE35542A876301
    Posted to Security (Forum) by markman on 10/20/2006
  • Re: how are form element names created?

    the control is a drop down list that gets populated via AJAX and therefore I can't get any selection out of it on the server and have to get it from the request querystring. This is what I do to get a selection: protected void InsertSource_OnInserting( object sender, ObjectDataSourceMethodEventArgs e) { e.InputParameters[ "gender" ] = Request.Form.Get( "InsertView:subheadDDL" ); } I implemented a ugly fix right now: if(Request.Form.Get( "InsertView:subheadDDL" ) != null) e.InputParameters[ "gender
    Posted to Client Side Web Development (Forum) by markman on 3/7/2006
  • how are form element names created?

    I have a dropdownlist that sits in a templatefield in a detailsview: < asp : TemplateField HeaderText ="Gender"> < InsertItemTemplate > < asp : DropDownList ID ="genderDropDownList" etc. When I look at the rendered HTML I see: <select name="InsertView$ genderDropDownList " id="InsertView_ genderDropDownList " etc. > when I run it on XP and <select name="InsertView: genderDropDownList " id="InsertView_ genderDropDownList " etc. > when I run it on Server 2003 How can I have
    Posted to Client Side Web Development (Forum) by markman on 3/7/2006
  • Re: Dataset + ObjectDatasource + GridView + ASP.NET 2

    adding ' DataKeyNames=?? ' to the detailsview allows you to have your primary key readonly and have the id avaiblable for updates. Markus
    Posted to Data Presentation Controls (Forum) by markman on 2/15/2006
  • button stopped working after migration

    Hi, I have a page with a button: < asp : Button id ="editB" runat ="server" Width ="180px" Text ="Click me" CommandName ="editButton" OnCommand ="ItemClicked"></ asp : Button > I migrated my project to 2.0 and when I click on the button nothing happens. The form submits to itself (no cross page submission) I looked at the source and see this: <input type="submit" name="editB" value="Click me" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;editB&quot;
Page 1 of 1 (5 items)