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 SkipVought 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: TheConeHead
  • Order by date
  1. TheConeHead

    counting a reader

    Is there a way to get the number of rows a reader has? [conehead]
  2. TheConeHead

    @media print

    I'll give that a shot... [conehead]
  3. TheConeHead

    Validation Issue

    I have a page with a datalist that edits and deletes it's own info - so there are some edit and delete buttons - on the same page I have a separate "form" - I need to validate on this other form but not on the datalist - How can I do this? The problem is that I add a required validator to the...
  4. TheConeHead

    @media print

    I gotcha, but here's the thing - I don't want the space of the textboxes either... So say I have a value of "Hi" in a textbox with a size of 150 - I want that size to go away too... make sense? [conehead]
  5. TheConeHead

    BizFlow

    Does anyone have any good research on BizFlow and it's ability to integrate with SharePoint Services? [conehead]
  6. TheConeHead

    @media print

    This might sound crazy, but is it possible, through css, to have a textfield on a page, when printed out, just show the value and not the textbox, or the selected value of a dropdown and not the dropdown? make sense? [conehead]
  7. TheConeHead

    comparing two fields in validation

    hmmm - I think that is going to make sure the two boxes are equal... I just want to make sure that if 1 has a value then they both have a value... [conehead]
  8. TheConeHead

    Sessions in .net

    My issues is this - I have a site where you have to login - I am putting that login info in a session and am checking it on each page - it is timing out rather quickly - I am doing this all on the default.aspx page - I just need to know the best way to do this? Thanks for any help.... [conehead]
  9. TheConeHead

    Adding to date in a strdProc

    Boy, you guys are good.. OK here's another one- In a stored procedure I am passing a value such as "26 Nov 2006" If have another field where I want to add on 180 days - anyway to do it? It's ok if it;'s just a straight up datetime field value (i.e. 11/26/2007 00:00:00 AM) [conehead]
  10. TheConeHead

    comparing two fields in validation

    I have two fields where if they are both blank it is ok, but if one is filled out then the other one must be filled out also, How would I validate this with asp.net? Comparevalidator? if so, how? [conehead]
  11. TheConeHead

    RegEx

    sorry - thought it would be the same.... [conehead]
  12. TheConeHead

    Query Issue

    Is there a way to take "23 Nov 2006" and use it to query a datetime field (i.e. 11/23/2006 7:45:12 PM) [conehead]
  13. TheConeHead

    custom validator

    Hmmm I tried: ValidationExpression="/\,\s/g" And it does not validate anything - any ideas? I want the textbox to have string, string [conehead]
  14. TheConeHead

    RegEx

    Hmmm I tried: (doing it in .net) ValidationExpression="/\,\s/g" And it does not validate anything - any ideas? I want the textbox to have string, string [conehead]
  15. TheConeHead

    RegEx

    Can anyopne give me a reg expr see if a string has ", " in it? (not including the "'s [conehead]
  16. TheConeHead

    populating dropdownlist in datalist

    Sorry - yeah - I've got all of that in there, but DataList1_ItemDataBound does not seem to be called at any point... What qould cause it to be called? [conehead]
  17. TheConeHead

    populating dropdownlist in datalist

    OK - I've got it converted to: private void DataList1_ItemDataBound(object sender, System.Web.UI.WebControls.DataListItemEventArgs e) { if (e.Item.ItemType == ListItemType.EditItem) { } } but it does not seem to be being called - how do I call it? [conehead]
  18. TheConeHead

    populating dropdownlist in datalist

    Great site - a definite star for that when this thread wraps up!! [conehead]
  19. TheConeHead

    populating dropdownlist in datalist

    probably not - can some some C# this code for me (yes, I'm helpless) Private Sub DataList1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataListItemEventArgs) Handles DataList1.ItemDataBound If e.Item.ItemType = ListItemType.EditItem Then 'find...
  20. TheConeHead

    custom validator

    Any guidance on how to create a reg express to chec for ', ' [conehead]

Part and Inventory Search

Back
Top