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

    Metric Measuring System logic help

    I have a small script that i need to expand it....this would be used to calculate the metric system. the first one works. <form> F: <input type="text" onchange="eval('C.value = ' + this.form.C_expr.value)" value="32" name="F"> <input type="hidden" value="(212-32)/100 * C.value + 32 "...
  2. devondago

    pop up to for a checkbox list?

    I have a checkbox list that I want to create a pop up textbox for each item of my checkbox list. <asp:checkboxlist id="comm" Runat="server" RepeatDirection="Vertical" AutoPostBack="false" RepeatColumns="2"> <asp:ListItem Value="Europe">Europe</asp:ListItem> <asp:ListItem Value="North...
  3. devondago

    how can i trim this field

    I am submitting a form and generating an email message. My problem is the following. I am sending the following. Message.Subject &= "Systems - Application Request" Message.Body &= "" & lbluser.Text & vbCrLf Message.Body &= "From Department: " & lbldeptname.Text & vbCrLf my lbluser.text is...
  4. devondago

    how to validate checkboxlist controls

    I have 2 back to back checkboxlist and I need to make sure the user selects one from each list. How can I validate a checkboxlist? <tr> <td class="NavyBold">Please Select age group:</td> <td><asp:checkboxlist id="chkagegrp" Runat="server" RepeatDirection="Horizontal" RepeatColumns="4"...
  5. devondago

    Adding days to current day being display

    I hope someone can help me with this one. I have a page where there are 2 dropdownlist menus where you select a topic and if the topic is approved. Once those two criterias are met I display the results on a datagrid. example---- <asp:DataGrid ID="dg" Runat="server" Visible="False"...
  6. devondago

    sending email based on a checkboxlist using select case

    I have a form that contains a checkboxlist. Based on the selection made on that checkbox list and once the user submits the form I have to send an email based on the selected topic. for each topic i have a person that needs to be receiving this email. <tr> <td class="NavyBold">Choose a...
  7. devondago

    'System.Web.HttpRequest.QueryString' denotes a 'property' where a 'met

    I have create a datalist that displays book titles as hyperlinks once the hiperlink is clicked it then takes you to an edit page. the hyperlink looks like this. <asp:hyperlink id="link" Runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "Title" )%>' NavigateURL='<%#...
  8. devondago

    passing session variables

    have a shopping cart that it is losing all of its values when the user hits the checkout button and takes them to my secure checkout page. Example, the user is shopping at www.mystore.com and purchase several items which are saved as session variables (session.mysession), they then would click...
  9. devondago

    cfloop using session to insert values

    I am almost done with a registration form for events. I am bringing in all my values throught my session.Crtcalid. My problem is that if there are 3 events a user signed up for the session.crtcalid inserts all the values of that field on the column rathen than one at a time loop and insert the...
  10. devondago

    formatting a recurring id number.

    I have a query where I need to create a reccuring id. As of now I create a table in sql that recurs starting at number 101. here is the code I use. <cflock timeout=&quot;3&quot; throwontimeout=&quot;No&quot; name=&quot;mylock&quot; type=&quot;EXCLUSIVE&quot;> <cfquery name=&quot;getrid&quot...
  11. devondago

    dynamically populating a textbox? and sending email conf.

    Hi I am doing a registration form and I have a drop down menu where users can select a class. Once they have choosen their class from that drop down menu i want the description of the class to be displayed on the textbook i created. Further more once the user hits submit i want to capture in...
  12. devondago

    how can i set up a connection to a database on a cfscript tag?

    I need help with this application.cfm file...I am having problems in 2 places....Application variables....If I am reading correctly I set up my database connection there....I have change it to reflect...Application.mhs74159 =&quot;Request.App&quot;; Application.DBType = &quot;SQLServer&quot...
  13. devondago

    how to make a expandable collapsible menu stay open on a new page

    please help me with an expadable/collapsible menu. This menu was generated in Dreamweaver and I cant seem to make it work. Its an expadable/collapsible menu(9 buttons)that does the following. when you mouseover one of the menu items a submenu opens vertically. The issue is that once you click...
  14. devondago

    need to add logic tying page ids to divs to call function below

    please help me with drop down menu I have a drop down menu (9 buttons)that does the following. when you mouseover one of the menu items a submenu opens horizontally The issue is that once you click on one of those sublinks and you are taken to that page the menu closes. I want the submenu...
  15. devondago

    menu tree nav nar

    I have a nav menu tree that works like this. there are 5 buttons each button represents a set of topics. When you click on one of those five buttons each display a set of submenu buttons. Each button expands horizontally to display the sub button. My issue is that I would like the submenu to...
  16. devondago

    urgent help sending form results via email and redirecting to new page

    Can someone help me with this form script.. this is a form that the results are sent via email...I also want to redirect the user to a thank you page once they have completed the form...what do I need to add in order for this to be accomplished? Please help! <!---BUILD ---> <script...
  17. devondago

    How to hide Javascript on View Source

    Hi I am buiding a form and I wanted to respond to the user if they have the right answer or not...I want to use javascript for this however I know that a user that maybe aware of view source will simply go to that. Can I do something to hide this?

Part and Inventory Search

Back
Top