Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ietprofessional
  • Order by date
  1. ietprofessional

    RegEx Questions

    Are you serious Marty?
  2. ietprofessional

    RegEx Questions

    Hi Everyone, I couldn't find a regex forum so I'm trusting my fellow asp.net-er will have this type of knowledge. I'm trying to validate a date field before I put it into a database. Does anyone have a regex for dates formatted in all of these ways 3/3/2005, 03/3/2005, 3/03/2005 and...
  3. ietprofessional

    How to check to see if a datagrid item has been selected

    Thanks ikswoktur! That is exactly what I was looking for!
  4. ietprofessional

    How to check to see if a datagrid item has been selected

    That won't work because I'm giving them two options select a item in the datagrid and update the selected item by clicking the update button or add new item and click add new button. All I need is to be able to check if something is being selected so my code doesn't go through the update sql...
  5. ietprofessional

    How to check to see if a datagrid item has been selected

    How do you check to see if a datagrid item has been selected? I'm creating a editing form where a user will click a update button and if they didn't select a item in the datagrid I want them to receive a message, but I'm not sure how to check and see if a item has been selected in the datagrid...
  6. ietprofessional

    asp / javascript checkbox enable/disable issue

    sounds like a page.ispostback problem in your page_load. make sure your [if not page.ispostback] is around your initial code in the page_load. Good Luck.
  7. ietprofessional

    Error When I added message box to my datalist delete button

    Yes. The delete button has id = "btnDelete" and runat="server". The Edit button has id = "btnEdit" and runat = "server". I'm still unsure why this is happening. Thanks!
  8. ietprofessional

    Error When I added message box to my datalist delete button

    This is a datalist not a datagrid. Can you give me anymore help on this one? Thanks!
  9. ietprofessional

    Error When I added message box to my datalist delete button

    Hi Everyone, I have a datalist with an edit and delete button and both of them worked fine, until I wanted to put a message box confirmation for the delete button. Now when I click the Edit button I'm getting this error on the lnkDelete.Attributes.Add... line: Object reference not set to an...
  10. ietprofessional

    Error while trying to get to user control properties

    How do you suggest doing this? I definitely know there is a linkbutton in this user control because I created it. THANKS!
  11. ietprofessional

    Error while trying to get to user control properties

    Hi! Dim i As controlname = New controlname Dim i2 As LinkButton = CType(i.FindControl("lnkServices"), LinkButton) i2.Visible = False I keep getting this error when I try to make a link button invisible that is in a user control: Object reference not set to an instance of an object. Any...
  12. ietprofessional

    DataList - How to start page in edit mode?

    Hello Everyone, I'm using a datalist on a form. I'm comfortable using a datalist as a editing tool, by using the itemtemplate and edittemplate. The user could go to an item click a button (with editcommand) that executes the edit command and the datalist goes to the edittemplate allowing the...
  13. ietprofessional

    Best way of saving radio button value in Database

    And radiobuttons and checkboxes will read the boolean value?
  14. ietprofessional

    Best way of saving radio button value in Database

    Now that I have all the checkboxes and yes/no radiobutton data in my database. how do I get that 0/1 bit data back on the form when I want to view the stored data? How do I make my checkboxes and radiobuttons read the 0's and 1's? Thanks!
  15. ietprofessional

    Best way of saving radio button value in Database

    When I want to do some databind with this data how do I convert the bit value to a value a checkbox or radiobutton will understand?
  16. ietprofessional

    Best way of saving radio button value in Database

    Another concern, there is no boolean value in sql server 2000?
  17. ietprofessional

    Best way of saving radio button value in Database

    Hi Everyone, I have a form that has multiple radio button (yes and no questions). My concern is, what is the best way of saving these values? I'm guessing boolean. I'm wanting to save these values in a database (SQL Server) so that I can retrieve them later on. Just to explain the project...
  18. ietprofessional

    Print Button Inside of IFrame

    HI! Does anyone know how to create a button to print a form inside of an Iframe? I want to create a button that will be clicked inside of an Iframe and only print that portion of the site. Thanks!
  19. ietprofessional

    Delete a row from datagrid without datakeyfield?

    The tables that will receive the data have autonumber primary keys. The point of the question is I'm putting data in a dataset until the final submission button is clicked. I need to be able to delete rows of data from a datagrid before it is placed into a database. Once the data is in the...

Part and Inventory Search

Back
Top