Search results for query: *

  • Users: sharc
  • Order by date
  1. S

    can't set page index on form view - has mind of it's own!!

    I'm trying to iterate through a formview and set the pageindex to the page that the record is found on, but the pageindex refuses to let itself be set. . . looking at the debugger it sets to the correct thing, and then resets back to the number it originally was before going into the loop. .. my...
  2. S

    trouble accessing values in formview

    I've got a form view, and want to iterate through its pages, checking the value of a label on the control. But even though I set the pageindex in the loop, I only get the label.text of the 1st page for the entire loop: For x = 0 To formView1.PageCount - 1 Me.formView1.PageIndex = x...
  3. S

    working with form view

    I'm new to working with form views, and am scratching my head on this one - I inherited a project, and on the site, all records are pulled up with a form view. Users scroll from page to page, each record being on it's own separate page. There's a search functionality, and when used, the...
  4. S

    acess ddl in edit template of gridview?

    For the life of me (and I'm sure it's really simple), I can't access the value in the editItemTemplate of my gridview. I've got a gridview called gv1, with the following code: <asp:TemplateField HeaderText="role" SortExpression="role"> <EditItemTemplate> <asp:DropDownList ID="ddlRole"...
  5. S

    No parameterless constructor defined/Missing Method Error on delete/edit of users?

    I'm trying to have a gridview handle edits/updates and deletions of users using a gridview. And I get the following error: No parameterless constructor defined for this object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack...
  6. S

    edit users wizard??

    I need to provide the same functionality that the asp site management does, so that admins can edit/update/delete users. I know there is a create user wizard that works in the same way as it's done on the site managment tool does, and I've seen the edit functionlity on other pages within the app...
  7. S

    how to validate more than 1 field dynamically?

    compare validator instead of required field validator to validate 3 fields that I want dynamically marked as required? uhmmm. .. ok, can you give me a hint as to how I can do this?
  8. S

    how to validate more than 1 field dynamically?

    I've got these fields in a form that I all want validated dynamically: <tr> <td style="width: 20%;">User Name:</td><td style="width: 40%;"> <asp:TextBox ID="txtUserName" runat="server" TabIndex="1"></asp:TextBox></td> <td style="width: 40%;">...
  9. S

    windows form validation

    sorry :D I've got a form set up in windows, with text fields for names, dates, email addresses etc set up. ... before clicking on the submit button, I'd like to validate that the data that's trying to be submitted is in the proper format .. .. dates are dates, email addresses have no spaces...
  10. S

    windows form validation

    Can anyone point me in the direction to how I would go about validating windows forms? :confused:
  11. S

    'Argument is not a valid value' :( ??

    Hi. I've taken over a project left from an ex-employee, and haven't worked with VB in years.. .. but this project needs to be completed asap :( I've the following error: ERROR: Argument 'Expression' is not a value value. And basically all I've been doing so far, is formatting the output...
Back
Top