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: *

  1. devondago

    Metric Measuring System logic help

    Jeff I hear you. my requirement where one thing before now they are what i can back to the forum for help. They should not change now. If you can help I would greatly appreciate it.
  2. devondago

    Metric Measuring System logic help

    Hi... How about if I need to enter feet and inches to get centimeters. Or if I have only the centimeters and I want to get the feet and inches result? below is what i have so far...any help would be appreciated. <tr> <td colSpan="3"> <h2>Height</h2> </td> </tr> <tr> <td vAlign="top"...
  3. 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 "...
  4. 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...
  5. devondago

    how can i trim this field

    got it....thanks...... added Message.BodyFormat = MailFormat.Html
  6. devondago

    how can i trim this field

    Still need the help... name coming out like this... lbluser.Text.Trim() "John Doe " how can I get this to trim? thanks
  7. 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...
  8. 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"...
  9. devondago

    Adding days to current day being display

    got it working by changing the row on the datagrid to this <asp:templatecolumn headertext="REQUESTED COMPLETION DATE" SortExpression="datesubmit"> <ItemTemplate><%#GetDate(DataBinder.Eval(Container.DataItem,"datesubmit"),DataBinder.Eval(Container.DataItem,"rdlTime"))%></ItemTemplate>...
  10. devondago

    Adding days to current day being display

    I still dont get the desired results. any work around?
  11. 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"...
  12. devondago

    sending email based on a checkboxlist using select case

    I have modified the code to your suggestion. But the email is not being send.? anything you see that i need to modified? thanks in advance....
  13. 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...
  14. devondago

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

    same error Invalid column name 'book_id'. Line 64: cmdSelect = new SqlCommand( "Select book_id, title, passage, date, location where book_id = '" + Request.QueryString["ID"].ToString() + "' order by title", cn ); Line 65: Line 66: dtrRelease = cmdSelect.ExecuteReader(); Line 67...
  15. devondago

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

    thanks for the tip....getting this error now... Invalid column name 'ref_id'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception...
  16. 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='<%#...
  17. 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...
  18. devondago

    cfloop using session to insert values

    Thanks for taking the time to help., I went ahead and created the added the array. I am now in need to add another column in my insert statement. When I added this column I got the following error. &quot;Error&quot;,&quot;4516&quot;,&quot;09/08/03&quot;,&quot;15:39:18&quot;,,&quot;ODBC Error...
  19. devondago

    cfloop using session to insert values

    Thanks for the feedback but I am a little lost. I am using Oracle as my db. You got me a little lost on the array structure part. Do you have a close enough sample for guidance. My error is revolving around the Session.Crtcalid when the values are inserted into the table I see that all values...
  20. 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...

Part and Inventory Search

Back
Top