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: *

  1. tperri

    rookie trying to create a sub menu asp/c#

    pass the ID from the look up table (manufacturers, or cars) in the query string to the new page, then get that value and run your database query. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  2. tperri

    New window action causes original page controls to open new window!

    Post your code for both the aspx page and the code behind. Thanks ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  3. tperri

    Update iframe after 2nd iframe loads

    I would eliminate using iFrames completely - then you can tell very easily. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  4. tperri

    Newbie Query - How do you access a textbox inside a Datalist/Repeater?

    Post your workaround.... as your complete question is a little confusing. Would like to see the result of what you wanted. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  5. tperri

    Update iframe after 2nd iframe loads

    Why don't you make the Please Wait message an image... and change the image to an image of "Done" when it is complete? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  6. tperri

    Dynamically Created ButtonColumn Not firing event

    Have you tried putting a datagrid in one of your datagrid rows and populating it that way? I've implemented what you want before, using datagrids. It is possible. Perhaps when they collapse the detail datagrid, you use an image button with the + and - sign and on the click event do the...
  7. tperri

    html 'onblur' code does not compile

    I bet if you close that page and do your build, it will compile with no error. The problem is XHTML Transitional not recognizing the onblur event in the body as being valid. That doesn't mean what you are doing is an error. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The...
  8. tperri

    Force login page

    You can also set a variable to be checked when every page is loaded to see if a user is logged in. This variable would be set when the user logs in. So the log in page would be the only page not checking for this variable. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The...
  9. tperri

    html 'onblur' code does not compile

    Have you tried compiling and running the code? If so, does it work? Ignore the fact the the XML transitional validation is failing. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  10. tperri

    How to append to a gridview

    Appending what? Columns? More rows of data? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  11. tperri

    uploaded website

    You should be getting a more specific error now - please post it. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  12. tperri

    uploaded website

    Well..... adjust your web.config file as the error message suggests so you can see what is going wrong. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  13. tperri

    HOW DO IACCESS SHARED DATASET!!!

    This is the ASP.Net forum. Please post in the regular C# forum. And, don't yell. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  14. tperri

    Reset or Clear Form after submitting

    Instead of trying to disable the previous button's functionality, perhaps you should add some code to detect whether the information has been submitted at a prior time before inserting a new record with the form's data ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete...
  15. tperri

    Problem with first postback in IE 7

    Did you set a break point in your click event or anything similar to follow your logic? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  16. tperri

    Designer Generated Code Not Generating

    I think you mean you're going from VS 2003 to 2005/2008. There is no longer Web Form Designer Generated Code visible like it was in 2003 in 2005 & 2008. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  17. tperri

    compilation error CompilerGlobalScopeAttribute

    Delete the temp files ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  18. tperri

    Split problem with </a> - Escape char?

    Seems like a situation for RegEx to me. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community
  19. tperri

    validate money data type

    Would you need to enter values greater then that? You can limit your textbox in max characters allowed to take care of that. Or you could add code to test the value from this field before you insert it into your sql table. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The...
  20. tperri

    GridView

    I didn't put this code in VS yet - Have you tried DataGridES dg = new DataGridES(); dg.FillGridWithHTML(xmlFile); dg.Grid.DataSource = dg.ds; dg.Grid.DataBind(); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://www.lessthandot.com - The Complete IT Community

Part and Inventory Search

Back
Top