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!

Search results for query: *

  • Users: BrendaD
  • Content: Threads
  • Order by date
  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

    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...
  3. 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) {...
  4. 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...
  5. 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"...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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
  12. 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...
  13. 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...
  14. 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...
  15. BrendaD

    Type Selection in Drop Down

    I have a drop down menu that has a large number values in it. I want my users to be able to type in more than the just the first letter to move to their selection. Currently I can only manage to get the drop down to accept the first character typed. If the users types 1, they will move to the...
  16. BrendaD

    Several forms for the same record (long)

    I want to add information to my database using several forms. Each form relates to the same record though they will represent different tables (linked through Primary and Secondary keys). What do I need to do to the forms that I create so that they all point to the same record? ie: The...
  17. BrendaD

    Radio buttons to call different validation scripts?

    Can you use Radio Buttons to select different validation scripts? I have a form that only certain parts are needed to be filled in depending on what the user is inputting. ie: daily log requires less info then incident log but both can use all the fields. I want to use separate validation...
  18. BrendaD

    UltraDev JSP - Remote Folder and URL

    I am getting this message whenever I try use Live Data. &quot;The HTTP error 404 occurred while attempting to request the file http:/localhost/webapps/BrendaWeb/ContactInfo_91iuuuiqy from your application server. Possible reasons 1)There is no application server executing the JSP scripts on...
  19. BrendaD

    UD4 Filter in JSP Tutorial

    In the tutorial when setting up the first Results page recordset, I am unable to choose the filter option: URL Parameter. It is supposed to the default selection but does not even appear as an option. I get: URL/Form variable, Session Variable and Entered Variable. Have I forgotten something...

Part and Inventory Search

Back
Top