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 bkrike 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 Programmer2006

  1. Programmer2006

    Converting a string to hyperlink

    My Code: string MyURL = Request.Url.ToString(); HyperLink1.NavigateUrl = MyURL; What I want in the addressBar: http://localhost/WebApplication5/Products/Products.aspx Instead I get...
  2. Programmer2006

    User Control displayed on top of page

    I fixed it...I included a label in my usercontrol; USERCONTROL:......breadcrumb.ascx the html........ <DIV id="pnlGrid" style="WIDTH: 20px; POSITION: relative; HEIGHT: 48px" runat="server" ms_positioning="GridLayout"></DIV> <asp:Label id="Label1" runat="server">Label</asp:Label><br>...
  3. Programmer2006

    applying css with image as a header

    Hi all I am trying to add my banner image as a header in css but it doesn't work and I don't know why. here is the css: ............................................. body{ background-color:#8470ff } p{ color:darkred; } a{ text-decoration:none } .banner { background-image...
  4. Programmer2006

    User Control displayed on top of page

    removing the gridlayout didn't work but thank you for the suggestion
  5. Programmer2006

    User Control displayed on top of page

    There is no html in the breadcrumbs.ascx.Sorry I showed the BreadCrumbs.ascx.cs file. The Breadcrumbs.ascx only has 1 line: <%@ Control Language="c# AutoEventWireup="false" Codebehind="BreadCrumb.ascx.cs "inherits=" Webapplication5BreadCrumb1"...
  6. Programmer2006

    User Control displayed on top of page

    NO i didn't but when i tried it I had the same problem. Below are the codes for Products.aspx and BreadCrumbs.ascx BREADCRUMBS.ASCX namespace WebApplication5 { using System; using System.Data; using System.Drawing; using System.Web; using System.Web.UI.WebControls; using...
  7. Programmer2006

    User Control displayed on top of page

    I have a user control that I made for BreadCrumb Navigation. It works great but my problem is that it is on top of my whole page, above my headers. I tried placeing it on the bottom of the page but it shows up on the top anyway. Is there some way to get around this so that I can place my...
  8. Programmer2006

    how to check if a char exists in a string then remove it

    I have a strings "Foamtreads" and "Mens_Foamtreads" I have an if else statement if (there is a dash){ //remove dash } I can't figure out my if statement because I am getting an Argument out of Range exception when there is no dash. if(dashPositioon=strTemp.IndexOfAny('_')!=null)
  9. Programmer2006

    Simple flash with 2 gif's takes too long to load

    Hi all I am new too flash and just did a simple application with a heart gif moving to a stethoscope gif. I tried to view my results in ie but it never opened after loading for 10 minutes. Could anyone help with some tips and advice as to how I could make it run faster?
  10. Programmer2006

    viewing aspx files in ie different than visual studio

    Hi I am viewing my aspx files in internet explorer and the textboxes and list boxes are missing. My labels are showing up though. When I run my project in Visual Studio the textboxes and listboxes show up perfect. This may be a stupid question but how do I view my aspx files in internet explorer?
  11. Programmer2006

    Exporting a Form to html by a commandButton

    If that only works for a table how what commands work for a form? And how do I write it?
  12. Programmer2006

    Exporting a Form to html by a commandButton

    I am trying to export a form to html by a commandButton using the TransferText method. Below is my code. Private Sub cmdExport_Enter() DoCmd.TransferText acExportHTML End Sub I get a compile error saying that I need to specify a table. I also wrote it as DoCmd.TransferText acExportHTML...

Part and Inventory Search

Back
Top