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

    commas in textboxes!

    I am an experienced .NET programmer, and I make a lot of websites with financial calculations, text boxes, reports etc. I have a particular page that has numerous textboxes for a person to type in numeric data; I validate the textboxes etc. when the data is submitted, etc. Whenever I display...
  2. Gamera99

    commas in a textbox??

    Problem: They want commas in numeric data in a textbox. I am an experienced .NET programmer, and I make a lot of websites with financial calculations, text boxes, reports etc. I have a particular page that has numerous textboxes for a person to type in numeric data; I validate the textboxes...
  3. Gamera99

    Build date time property

    Does anyone know the class property that is used to show the last time the project was built or rebuilt? I have searched the msdn knowledge base, and someone suggested it might be the system.reflection classes, but I am unable to determine which property. Can anyone help? I imagine there must...
  4. Gamera99

    build date & time

    Does anyone know the object & properties to expose the last solution build date and time? I wanted to post the data on one of my administration pages since my project has multiple developers. I have looked in the help files but I can't find the appropriate object. Thanks if anyone has any...
  5. Gamera99

    button onclick

    My login page has two textbox objects and a submit button object (each text box has required field validators too). The login page submit button will respond to pressing the enter key, and the request.form collection contains the three text boxes and the submit button. My problem: Another...
  6. Gamera99

    Does anyone have experience develop

    Does anyone have experience developing credit card XML pages? I have successfully used XML to get shipping data from the UPS server, but I don't use SSL for that. I need to use SSL for my credit card page, but I am not sure how to configure my site as anonymous access and then suddenly switch...
  7. Gamera99

    XML posting in SSL

    I am not sure if I am posting this in the correct forum; Does anyone have experience developing credit card XML pages? I have successfully used XML to get shipping data from the UPS server, but I don't use SSL for that. I need to use SSL for my credit card page, but I am not sure how to...
  8. Gamera99

    rounding error - formatcurrency()

    Does anyone have a good idea how to handle a problem like this? I am writing rather long tables of financial data on asps; the financial data elements are stored in my database as "money" data type elements which has 4 numbers to the right of the decimal point. When I display the...
  9. Gamera99

    Save an ASP as HTML page

    One of my ASPs produces a detailed tabular report from one of my databases. I want to provide automated emailing of the report to the user. Typically when I do this, I have a separate email function that writes the data to a message body string and sends the email via CDONTS. I recently saw a...
  10. Gamera99

    Returning table names in a query

    I have about 36 archive tables that are written to by other tables' triggers. Each of my archive tables begins with "LOG_". I am trying to develop a query that will show the count and last mod date of each table (I have a data element in each LOG table "mod_date"). First I...
  11. Gamera99

    call a javascript function

    Hello does anyone know how to call a javascript function from within a server-side vbscript section? So say I have a vbscript event like: <% sub cmdSave_onClick() something something javascript openPopWindow(xx,xx,xx) end sub %> Thanks if anyone can help.
  12. Gamera99

    Call a javascript function from server-side vbscript

    Hello does anyone know how to call a javascript function from within a server-side vbscript section? So say I have a vbscript event like: <% sub cmdSave_onClick() something something javascript openPopWindow(xx,xx,xx) end sub %> Thanks if anyone can help.
  13. Gamera99

    Change font size in DTCs

    Does anyone know how to change the font size inside Interdev DTCs such as listboxes, etc? I am using style sheets to control font parameters on all of my pages but it doesn't affect the fonts inside the controls. Thank you.
  14. Gamera99

    Document.LastModified

    I have been trying to use the javascript &quot;document.lastmodified&quot; statement in my ASPs, but it displays the date and time that the ASP was actually constructed by the server! That isn't what I wanted. I'm unaware of a server variable that shows this info....Does anyone here know a way...
  15. Gamera99

    test for db connection

    I want to test for a good DB connection in the session_onstart() portion of my global.asa file, then redirect a user to a &quot;database unavailable&quot; page when the user hits the default.asp. Does anyone know a good test for the connection object, rather than having to look at the &quot;For...
  16. Gamera99

    Capturing browser exit

    I am writing an intranet app in Interdev 6 with an Oracle 8i backend. I have a DBA page which shows all current users. I write them into an oracle table when the users' individual session_onstart events fire, and I remove them when the session_onend event fires (unfortunately this is usually...
  17. Gamera99

    Global Alert Design

    I am building an intranet site using Interdev 6 running on an IIS4 Server. In my app I have included a utility that allows a DBA to write a message, click a button, and the title bar on all users' pages (using application variables) is replaced with my message text - Sort of like a Global Alert...
  18. Gamera99

    Pass a recordset to a button_onclick event

    I am writing ASPs in Interdev 6. I make my own recordsets, like: dim rsRole set rsRole = Server.CreateObject(&quot;ADODB.Recordset&quot;) sql = &quot;select * from Role&quot; rsRole.Open sql, conn and I am using some button DTCs. I don't want to use Recordset DTCs for some of my recordsets...
  19. Gamera99

    Make a Client PC Beep

    Does anyone know how to make a client's PC &quot;BEEP&quot;? I am using ASPs created in MS Interdev 6 running on a server running IIS4. The clients and the webserver all intranet only. The MSDN help documentation doesn't even mention the Visual Basic &quot;BEEP&quot; function for Interdev...
  20. Gamera99

    Global Alert

    We are building an intranet web project using interdev with an oracle back end. I am trying to think of some way to incorporate a global alert feature which will tell users when the database is not available, if the database is shutting down for backups, etc (it goes down every night for...

Part and Inventory Search

Back
Top