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 devondago

  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...

Part and Inventory Search

Back
Top