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. 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
  16. MaryNET

    Passing values that don't expire

    thanks Jason, >> why not just use Forms Authentication? I am: <authentication mode="Forms" > <forms loginUrl="login.aspx" name="Test" protection="All" path="/" timeout="30"> </forms> </authentication> <location path="MemberPage.aspx"> <system.web> <authorization> <deny...
  17. MaryNET

    trying to create login with sql table users

    Here are some good tutorials: http://www.asp.net/learn/security/ http://aspnet.4guysfromrolla.com/articles/040506-1.aspx
  18. MaryNET

    Passing values that don't expire

    Is this the best way to use the ViewState in my particular situation: public partial class Members private string MemberID { get { if (ViewState["MemberID"] == null) return null; return ViewState["MemberID"].ToString(); } set { ViewState["MemberID"] =...
  19. MaryNET

    Passing values that don't expire

    Thanks Jason >> i wouldn't trust a system if it didn't let me log out. I have a Log Out button [bigsmile]. This is the kind of site that most people will want to stay logged in (like this site). I guess storing an ID in a cookie is the best way to persist the data but I was thinking viewstate too.
  20. MaryNET

    Passing values that don't expire

    Hello, If a user checks the chkPersistCookie check box when logging in, I want their session to never expire: (they don't have to Log In next time, and their Session will never expire). My Question is : I need to pass a few values over to the new page. But they can't expire (like Session's)...

Part and Inventory Search

Back
Top