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

  1. BrendaD

    CS4 and C#

    I have just loaded the new version of Dreamweaver, CS4, and it seems that the Server Behaviors for C# are not installed. Have I missed something when installing? How do I find the Server Behaviors on Adobe Exchange? I can't find the Server Behaviors (keeps timing out) and what does come up...
  2. BrendaD

    Calculate Multiple Rows

    Thank you for your time! Here's the view source code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Vote</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <SCRIPT...
  3. BrendaD

    Calculate Multiple Rows

    I appreciate your comments about document.all but this is an internal application that only runs on IE so it is not a grave concern. Here is the code (Dreamweaver was used for most of it, obviously!): <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Dim MM_connBudgetVote_STRING...
  4. BrendaD

    Calculate Multiple Rows

    I am having a horrible time trying to figure out what is wrong with my code... I have a page where a voter (who has 10 votes) can place from 1 to 10 votes for each project - 27 projects in all. I have figured out how to do batch updates to the database from an ASP page but can't get the...
  5. BrendaD

    Radio Button and Textbox

    I am stuck! I want to populate a textbox with the content of another textbox based on whether a radio button has been clicked. Here is the javescript code: function setValue() { if (document.frmOcc.rbFirstContact[1].checked) {...
  6. BrendaD

    Autosize Text Box in Web Form

    I have looked everywhere and have had no luck in figuring out how to autosize a text box so that it shows all the content whether it is 100 lines or 10 lines. I have come across the idea of Rich Text Box Editors but don't need anything that elaborate. Just a simple text box that resizes to...
  7. BrendaD

    Listbox Multiple Selection Update Record

    I have been looking for days on how to perform a - hopefully - simple task. I have a MultiSelect Listbox on my Insert Page. <asp:ListBox ID="ddlSite" DataSource="<%# dsSite.DefaultView %>" DataTextField="Site" DataValueField="Site" Rows="5" runat="server"...
  8. BrendaD

    ddl, autopostback, OnSelectedIndexChanged

    I have two dropdown lists - the second one populated by the selection in the first. Everything works perfectly until I add the insert behavior. The autopostback in the first ddl is set to true BUT it fires the insert behavior instead of the function it is supposed to call: <script...
  9. BrendaD

    Form not submitting with validation

    Thanks for the suggestion Chris. I know we have .net on the server. My problem is specific to validators on the form and submitting. Fortunately, I found this article that addressed exactly what my problem is. http://scottonwriting.net/sowblog/posts/2943.aspx Thanks again, Brenda
  10. BrendaD

    Form not submitting with validation

    I have created an insert form in MX 2004/ASP .NET C#. The form submits without a problem until I put a validation server control on it. Then it will not submit. Nothing happens, whether validation occurs (ie: textbox is empty) or not. The form runs on my test server, no problem but it will...
  11. BrendaD

    Insert Start End Date for Calendar

    I want a Form where the user inputs the Start Date and the End Date of a recurring event - they can input with a textbox (popup calendar optional). The results would list all the Dates of the Event - ie: INPUT Event Name: Test1 Start Date: Oct 8, 2003 End Date: Oct 12, 2003 RESULT (table with...
  12. BrendaD

    Insert Start End Date for Calendar

    I am lost! I want to have an insert form that allows the user to enter only a start and an end date for a recurring Event. I then want the Calendar to show the Event on all the dates - start, end and all the dates in between. This seems like a simple procedure but I am stymied. Where do I...
  13. BrendaD

    Search Date Range

    Thank you, both of you are right. I reworked the SQL: <input name=&quot;StartDate&quot;... <input name=&quot;EndDate&quot;... ....Where txtDateTimeCall BETWEEN 'varStartDate' and 'varEndDate' Default Value = 2002 and 2003 instead of wildcards Run-Time Value =...
  14. BrendaD

    Search Date Range

    I need to search my SQL Server database by a date range - find all calls placed between this date and that date. I am using the smalldatetime data type for the field, which is named txtDateTimeCall. I have been able to find out how to write this for Access with variables but not how to write...
  15. BrendaD

    Creating ReUsable VBScript Server Behavior

    I need to Hide the default dates SQL Server shows on the Confirm page. If a Date Time is not entered, SQL Server automatically fills in the space with the default date of 1900.01.01 00:00 (I have converted the date/time to a quasi military). I do not want this date to show when the recordset...
  16. BrendaD

    Reformat user's input to match SQL Server acceptable format

    My users want to enter the time in the 24 hour clock format: ie: 1212 vs 12:12 SQL Server will not accept 1212 as a time format. Is there a way to add the colon onSubmit so SQL Server will accept it? Thanks, Brenda
  17. BrendaD

    Convert Feet and Inches to Centimeters

    I have the vague notion that I need to add change the feet to inches, add them to the inches and multiply by 2.54 - (((txtFeet*12) + txtinches) * 2.54) Is this the correct way to get the value or would I need to write a function and call it? How do I go about entering this calculation into a...
  18. BrendaD

    Drop Down not showing Selected Value on Update Page

    I have code generated by UD4 (below). The first batch of code works - when a selection is made that value shows up on the Update page. The second batch of code - which seems identical - does not show the selected value on the Update page. It shows the initial value in the options list. I...
  19. BrendaD

    Creating then tracking an ID

    One your second page make sure that your recordset includes the autonumber &quot;UniqueID&quot; field. In your Select statement use ORDER BY &quot;UniqueID&quot; DESC. This will return the last &quot;UniqueId&quot; entered into the database which will be the what the user just entered. HTH...
  20. BrendaD

    Hide Record from Search after it has been &quot;locked&quot;

    I have an ASP UD web application where Security Officers fill out online forms to submit their reports. After the reports are submitted, they are reviewed by their Supervisors and &quot;locked&quot; - they should not be able to go back and alter the records after they are &quot;locked&quot; due...

Part and Inventory Search

Back
Top