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 TouchToneTommy 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: MikeMCSD
  • Content: Threads
  • Order by date
  1. MikeMCSD

    Is Yahoo Shopping Cart/Store expensive compared to Authorize.net?

    Does anyone know how much cheaper it would be building your own shopping cart instead of using a pre-built one like Yahoo shopping? My brother is paying $100.00 a month, plus 1% of total sales to Yahoo. He sometimes has to pay over $300.00 a month to Yahoo. His site...
  2. MikeMCSD

    Printing on special forms

    Hi, I want to print invoices for orders on special forms where part of the form has a "peel-off" section that I can put the shipping address on. Does anyone use forms like this or know where to get them? Does Avery make them? This form looks like the old Amazon.com invoice forms that had...
  3. MikeMCSD

    Forcing Post Back

    If I wanted to force a Post Back for the CURRENT page URL that has a QueryString, like: http://ibmserver/store/default.aspx?ViewCart=1&DepartmentID=2&DepartmentIndex=1&Dept=Baptism How would I get the entire URL with the QueryString? Should I use the Response.Redirect? Thanks
  4. MikeMCSD

    Need to make Invoices for Web Store

    I have my Web Store built using ASP.NET, VB.NET, and SQL Server. Need to make nice Invoice forms for the orders. I want to make an Order form that will display the order and customer information, and the shipping address. But here is the hard part: I want the shipping address to be on a...
  5. MikeMCSD

    Passing variables with User Controls

    I'm trying to get 2 variables to "refresh" on the top part of the page when a function is called that updates them. I want to keep the "total number of items" and "total amount" for the shopping cart updated on the Default.aspx page to the current values whenever they are changed. On the...
  6. MikeMCSD

    Session variables

    How would update a Label on a User Control (.ascx.vb file) with a Session variable from another User Control as that variable is changed? I want to update the shopping cart total at the top of the page (a Header as a User Control) when "Add to Cart" is clicked from another control...
  7. MikeMCSD

    Query String: how big is too big

    How much information can you put into a query string? Can it be too big? Does it hurt performance if it is too big? Right now I have 7 parameters in mine: http://ibmserver/store/default.aspx?DepartmentID=2&DepartmentIndex=1&Dept=Baptism&CategoryID=2& Ly=2&rc=True I need to add one more, but...
  8. MikeMCSD

    Macros for Windows: is it possible?

    Is it possbile to use macros for Windows? Here is what I want to do: I want to highlight and copy a filename from the Explorer and paste it into a cell of an Excel sheet. I've used macros in Word, but never in Windows. Thanks
  9. MikeMCSD

    Put multiple columns in one column in DataGrid

    I trying to put a ButtonColumn within another column (just below it). Is this possble? This didnt' work: <asp:TemplateColumn> <ItemTemplate> <asp:HyperLink id=Hyp2 runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Name") %>' NavigateUrl='<%# "... .%>'></asp:HyperLink>...
  10. MikeMCSD

    Datagrid - displaying columns based on code

    Is it possible to use code before displaying columns on the datagrid to change a column based on a condition? Here is what I want to do: I Have a field "Engraving" in the database that if True, I want to display "Yes" and an Add button next to it. If false, just "No". I use this to get the...
  11. MikeMCSD

    Stop Images from stretching or expanding table

    Say I have a <table> with a <td width=150 height=200> cell. I want to load images of all different sizes into the cell but I want to keep the cell the same size without a larger image expanding the cell, and I also want the image not to stretch by width or height, distorting the image. Ex...
  12. MikeMCSD

    Loading ASP.NET application to DiscountASP.net

    I'm going to be transfering my asp.net application to the ISP DiscountASP.net. Is it possible to just copy over all the files instead of using Visual Studio to do it? They give you an option to use VS but you must have Front Page extensions enabled first. I'd rather just copy them over than...
  13. MikeMCSD

    Array problem

    Dim words() As String = Split(searchString, " ") Dim wordsCount As Integer = words.Length Dim index As Integer = 0 Dim addedWords As Integer = 0 Dim holdWords() As String While addedWords < 5 And index < wordsCount If Len(words(index)) > 2 Then addedWords += 1 holdWords(index) =...
  14. MikeMCSD

    Fields for Products table

    I have a Products table that I am about to add 5000 products to. But before I do, I want to make sure I have all fields I might need. If anyone has any suggestions on what I have now or can think of anything I should add, please let me know. Products table: ProductID CategoryID SupplierID...
  15. MikeMCSD

    Full Text Search . . noise words

    I'm passing a string into this stored procedure for a Search using Full Text Search: CREATE PROCEDURE SearchCatalog (@Words varchar(50) = NULL) AS SELECT ProductID, Name, description FROM Product WHERE FREETEXT(*, @Words) If the string just contains "the", or "4", or other "noise words" an...
  16. MikeMCSD

    Full Text Search . . need VB code

    I setup Full Text Search on SQL Server and created this stored procedure which works in Query Analyzer when I supply it with one string parameter: SELECT name, desc FROM Products WHERE CONTAINS(*, @searchString) For the code in ASP.NET, I need some way of breaking the searchString into...
  17. MikeMCSD

    Cookies only for Web Store

    Currently, my web store will only work with browsers that accept cookies. I'm using ASP.NET with Forms authenication which makes things real easy. Is this a bad idea? Do a lot of other sites work only using cookies? I've seen a few. I'm trying to look into other ways where I can handle...
  18. MikeMCSD

    Installing Win2000 after XP

    Hi, Is it possible to install Win 2000 on a machine that already has XP Home on it? I would like to keep all the configuration/installations that are currently on the XP Home operation system. Is there a way I could save the whole C:\ drive that has XP on it and later transfer it to another...
  19. MikeMCSD

    ASP.NET Web Hosting

    I have my E-Commerce store almost built and I am looking for a web hosting company. Need support for ASP.NET and SQL Server. Does anybody have experience with any of these web hosters? Or could recommend one? I have been checking out the following sites: http://www.alentus.com/...
  20. MikeMCSD

    Options file .suo not written successfully

    Anybody ever see this problem? The options file "\\WebServer\WebStore\store.suo" was not written successfully. Check that the location is available, the file is writeable and there is enough room on the disk. This file is not being saved when I close Visual Studio.

Part and Inventory Search

Back
Top