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

    Create divs with different background colors

    I am working on a wordpress site using Bootstrap HTML and would like the front page to have multi sections that have alternating background colors, similar to this site. This is the new site I am working on. I am hoping to find the proper syntax for this procedure. Thank you in advance
  2. yaknowss

    Slideshow that disappears when scrolling down on a page

    I am looking for a slider that disappears when you scroll down on a web page. I want the functionality to have similar ability to this web site: http://www.iacquire.com/. I have a slider in place, just need to figure out which code needs to be utilized to make it work. I'm thinking Javascript or...
  3. yaknowss

    Expand Collapse text based on Image Click location

    I have an image that is a map of the USA. http://www.tri-ed.com/branchmap.aspx. I want to have expandable/collapsible text displayed based on which city is clicked from the image Ex. Seattle would display Seattle branch info....Nashville would display Nashville info..And so on. I thought I could...
  4. yaknowss

    CURSOR Function Error: Select statements included within a function cannot return data to client.

    I am receiving the following error when I try to execute: Select statements included within a function cannot return data to client. My code is below. Any ideas? Thank you in advance for helping me troubleshoot. USE [PMCLW1] GO /****** Object: UserDefinedFunction [dbo].[func_PNMS_CA] Script...
  5. yaknowss

    Creating a multi-part form that submits to db

    I am trying to create a multi-part form that will have sections that can expand and collapse based upon users purpose. I also need to submit this form to a database. I was hoping someone can provide an example or provide a source of code to reference.
  6. yaknowss

    Ascx Links will not work in IE 10

    Works fine in other browsers. <%@ Control Language="vb" AutoEventWireup="false" CodeBehind="Landing.ascx.vb" Inherits="PrimeNet.Modules.PrimeTrack.Landing" %> <div style="margin: 10px auto 10px auto;"> <p style="font-family:Arial;"> <asp:Literal ID="litCampSetup" runat="server"...
  7. yaknowss

    Javascript slideshow Mobile Issue...

    I have 3 javascript slide shows all running on the same page. When I view on a PC browser or an Android device, it looks fine. However, on a mobile apple device....The homepage makes a "glitchy shift" movement whenever the slide shows transition. Any ideas why this is happening and how do I fix...
  8. yaknowss

    Email confirmation won't display correct value when applying gift card to order amount

    I am running into an issue when a user tries to apply a gift card towards a portion of their order. The shopping cart checkout process works fine until they reach the confirmation email. For some reason on the confirmation email the order amount is displaying an inaccurate number and is adding...
  9. yaknowss

    Insert single quotes from web form into SQL database

    I'm sure this is fairly simple to do, but, given the code I am working with I am having trouble... For example, if someone types John's in one of the fields, I would like for it to show up as John's in the database. Any help is greatly appreciated. Right now we cannot insert single quotes when...
  10. yaknowss

    Insert single quotes from web form into SQL database

    I'm sure this is fairly simple to do, but, given the code I am working with I am having trouble... For example, if someone types John's in one of the fields, I would like for it to show up as John's in the database. Any help is greatly appreciated. Right now we cannot insert single quotes when...
  11. yaknowss

    System.Data.SqlClient.SqlException: Procedure or function 'wp_session_spLogout' expects parameter

    This web error keeps appearing in our logs: Error: Exception of type 'System.Web.HttpUnhandledException' was thrown. All of it: System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.Web.Services.Protocols.SoapException...
  12. yaknowss

    How to Parse Checkbox Input Type Value to String

    I currently have this functionality in place for a decimal value, but I also need it for a checkbox. Below is what I have for the decimal value, how can I replicate this for my check box value? if (decimal.TryParse(txtGift.Value.ToString().Replace("$", ""), out number))//93 {...
  13. yaknowss

    Add $5.00 amount to shopping cart total when checkbox is selected

    I want the cart total to apply an additional $5.00 charge when the txtBwayEDUGift checkbox is selected. I would also like to have the ability to have that charge removed if users deselect the txtBwayEDUGift checkbox. I've attached my aspx page, lines 11-233 is where you will find a javascript...
  14. yaknowss

    Add $5.00 amount to shopping cart total when checkbox is selected

    I want the cart total to apply an additional $5.00 charge when the txtBwayEDUGift checkbox is selected. I would also like to have the ability to have that charge removed if users deselect the txtBwayEDUGift checkbox. I've included my aspx page, lines 11-233 is where you will find a javascript...
  15. yaknowss

    Records won't display in DetailsView

    I currently have a table in DetailsView that has insert / edit capabilities, and is also filtered based on customer (constituent) ID. Currently, the table only appears in a browser if the constituent has a previous entry to filter by. I need this table to be viewable for all constituents, even...
  16. yaknowss

    View JavaScript Function OnClick

    Our seat maps are currently designed to take users to a screen where they can select a seat they want and from there, purchase a ticket. Using the same page, I added a query string that is set for users who want to view the seat maps only and not actually purchase a ticket. Here is the query...
  17. yaknowss

    View JavaScript Function OnClick

    Our seat maps are currently designed to take users to a screen where they can select a seat they want and from there, purchase a ticket. Using the same page, I added a query string that is set for users who want to view the seat maps only and not actually purchase a ticket. Here is the query...
  18. yaknowss

    System.Net.Mail - Add a page break in EmailMsg.Body

    I am trying to pull in data from a web form into an email body. The fields are showing up in my email, but i want to format the body of the email message so it is visually appealing. When I apply the code below, it seperates with a comma and I want to know how can I seperate the passing data...
  19. yaknowss

    Send Data from Web Form via Email

    I created a web form using C# and want to know how to send the data from my form through an email rather than submitting to a database. Any ideas or examples you can provide would be greatly apppreciated... It can be in plain text or HTML.. I just need the data that is being entered from the web...
  20. yaknowss

    The name 'SqlDataSource1' does not exist in the current context

    I am creating a web form written in aspx and c#. I'm having difficulty submitting the form to a MySQL database. I am experiencing the following error in my code behind on the line "SqlDataSource1.Insert();" : The name 'SqlDataSource1' does not exist in the current context". I would like the...

Part and Inventory Search

Back
Top