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!

Recent content by MaryNET

  1. MaryNET

    Enter key not working for Search Button

    I took Page_ClientValidate('. . . out and it didn't do anything.
  2. MaryNET

    Enter key not working for Search Button

    Thanks. Good idea, .. it's inside the button code: <asp:Button ID="SearchButton" OnClick="SearchButton_Click" CausesValidation="true" ValidationGroup="Search" OnClientClick=" if(Page_ClientValidate('Search')){{window.location='{0}?k='+encodeURIComponent({1}.value);}}return false;" /> Is that...
  3. MaryNET

    Enter key not working for Search Button

    I'm getting this J.S. error when Enter is pressed for a Search.The page stays on the page it is on and doesn't perform a Search: 'document.getElementById(...)' is null or not an object The Search works on FireFox. I found one difference: FireFox view source...
  4. MaryNET

    Print a web page from Code

    Because this system has a lot of tables related to the Orders table and if I try and create a Crytal report by using the fields from those tables I'm probably going to miss something down the line. The way they have it now is that you can print a range of Invoices at once but all the Invoices...
  5. MaryNET

    Print a web page from Code

    thanks, I'm trying to adapt a system that I didn't built. I have used Crystal in the past to print Invoices, but if I could get this work-around it would save a lot of potential problems later.
  6. MaryNET

    Print a web page from Code

    Is it possible to send a web page (or a printable stylesheet in my case) to the printer from code? This is all on one .aspx page with no code behind. I have this loop that sends each Invoice to the screen, one by one, but not printer: <script runat="server"> while (dr.Read()) {...
  7. MaryNET

    E-Commerce for ASP.NET

    SEO guidelines change so damn much . . What are latest "rules"?
  8. MaryNET

    E-Commerce for ASP.NET

    seo friendly url: http://www.vitacost.com/FoodScience-Aangamik-DMG
  9. MaryNET

    E-Commerce for ASP.NET

    I don't know if that store front has a "SEO Friendly Product URL". SEO is a very important feature for an ecommerce site. Also, do any asp.net ecommerce packages out there use AJAX?
  10. MaryNET

    E-Commerce for ASP.NET

    This package looks fantastic, but $499.00: http://www.bvsoftware.com/ This one looks good for $150 : http://www.vevocart.com/features.aspx
  11. MaryNET

    E-Commerce for ASP.NET

    Did you like it? What version? The new version 3.0 looks realy good: http://dashcommerce.org/dashcommerce/sc_storeoverview.aspx
  12. MaryNET

    E-Commerce for ASP.NET

    Has anybody used the Beer House or dashCommerce E-commerce Starter Kit? Or could anyone recommed anything better, even if not for free? thanks
  13. MaryNET

    Make a pop-up box inside a GridView

    This worked: <asp:TemplateField> <ItemTemplate> <asp:LinkButton CommandName="Delete" OnClientClick="return confirm('Are you sureyou want to delete this record?');" ID="btnDelete" Text="Delete" runat="server"></asp:LinkButton> </ItemTemplate> </asp:TemplateField> <asp:TemplateField>...
  14. MaryNET

    Make a pop-up box inside a GridView

    Can that be done using the <asp:CommandField ShowDeleteButton="True" /> type "button"? I would like to use a regular button instead, like in a asp:TemplateField for this, but can't figure out how to do it, or even if it can be done; I would to also make this asp:TemplateField field...
  15. MaryNET

    Make a pop-up box inside a GridView

    Inside a GridView, I would like to display a pop-up box when this Delete button is clicked: <asp:CommandField ShowDeleteButton="True" /> Can this be done? Thanks

Part and Inventory Search

Back
Top