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: MikeMCSD
  • 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

    TextBox Alignment

    for currency: amount = 12.99 totalAmountLabel.Text = String.Format("{0:c}", amount)
  3. 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...
  4. MikeMCSD

    Forcing Post Back

    thanks BB, I would need to pass all the parameters of the URL when posting back because the parameters are used for displaying the layout, department, etc . . Does the Server.Transfer pass the parameters? How do I use it? Do I just put Server.Transfer by itself? I tried...
  5. MikeMCSD

    SQL Server Reporting Services

    thanks for the effort Kimberly . . . seems the $29.00 offer expired, found this: Visual Studio .NET 2003 Upgrade Offer.... ($29*) for retail customers ended on September 30, 2003... But I found a few Upgrades . . don't know how good they are . . on eBay...
  6. 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
  7. MikeMCSD

    Passing variables with User Controls

    I found a solution by added Response.Redirect(Request.RawUrl): Private Sub Add to Cart . . Session("items") = cartHead.Total_Items Session("total") = String.Format("{0:c}", cartHead.amt) Response.Redirect(Request.RawUrl) End Sub This reloads the page and forces another Page_Load...
  8. MikeMCSD

    SQL Server Reporting Services

    thanks Kimberly! "The upgrade from VS.NET 2002 to 2003 is about $20, I thought, . ." I didn't even think to check for an upgrade to 2003. Is the upgrade only $20.00? Is this an upgrade that is done at the Microsoft website or do I purchase a CD? If I can get the upgrade, I'll definately go...
  9. 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...
  10. MikeMCSD

    SQL Server Reporting Services

    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...
  11. MikeMCSD

    Passing variables with User Controls

    what have you written in the onClick event of the Add to Cart button? " I don't have an onClick event for the button, the button is in a DataList and I'm using: Private Sub list_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataListCommandEventArgs) Handles...
  12. 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...
  13. 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...
  14. 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...
  15. MikeMCSD

    Macros for Windows: is it possible?

    Thanks wolluf . . I'll check them out!
  16. 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
  17. 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>...
  18. 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...
  19. MikeMCSD

    Stop Images from stretching or expanding table

    thanks guys . . . I'll give it a try!
  20. 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...

Part and Inventory Search

Back
Top