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

    W3.CSS Containers Conflicting with Bootstrap

    I've been doing a redesign of my church website using a lot of the functionality contained in the W3.CSS libraries. I'm using them so as to easily convert the pages over to a responsive display. <link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> Everything looks great on all...
  2. SteveL714

    Looking for HTML5 'Read More' tool

    When I visit web sites I see pages that have some text followed by a control that says 'Read More' and when you click on that link the rest of the text appears. I've been trying to search for that type of control but I really don't know how to word it. I'm working on my church website and this...
  3. SteveL714

    How do I Call a SQL StoredProcedure from JavaScript

    I have added an onBlur method to an ASP Textbox used for creating a new user logon account. As the user exits the text box I want to take the entered value call a stored procedure to see if that logon value is already used or not. In the Page_Init of CreateUser.aspx.cs I have the following...
  4. SteveL714

    IndexOutOfRangeException

    In my C# application I've retrieved a row of data from a MS-Sql database. While the majority of the data is coming across fine, the data reader in C# is throwing the "IndexOutOfRangeException" message on three columns in the result set. Those columns are defined in SQL as nvarchar(128). One...
  5. SteveL714

    Problem implementing custom LostFocus on text box

    I found a post online illustrating how to implement a LostFocus method with a text box. Here's what I've got: protected void Page_Init(object sender, EventArgs e) { var onBlurScript = Page.ClientScript.GetPostBackEventReference(txtZipCode, "OnBlur")...
  6. SteveL714

    Problem translating VB code to C#

    I'm translating an old VB routine to C#. In VB I had the following code sequence Dim SearchView AS New DataView(CurrentSchedule.Tables(0)) SearchView.Sort = "shiftgroup,worker_id" SearchView.RowFilter = "worker_id <> 0" Dim keys(1) as Object ... ' Set lookup values for this record. keys(0) =...
  7. SteveL714

    How To Make ASP Net Login Conditional

    I'm developing an application using the ASP.Net Membership, Roles & Profile system. I want to allow users to browse thru the screens without forcing them to register and/or login first. Once they get to the point where they want to actually place an order then I want to get login information...
  8. SteveL714

    mysql_fetch - how to fetch table multiple times

    I have a routine where I'd like to use elements of one table multiple times. Is there any way to reposition a table back to the beginning so I can use MySQL_fetch_assoc on the table again? Any help would be appreciated. Steve
  9. SteveL714

    C# and ASP.Net Session Values

    I am in the process of converting an old VB.Net web-site I built over to C#. On the default page I define a series of Session values for reference on subsequent pages. When I start to use them the ones that are predefined as string are available for reference. The ones that are predefined...

Part and Inventory Search

Back
Top