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

  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

    Will install of IE 5.5 will upgdare MSXML parser?

    sergeiY I have had the same problem with NT4 and 2000 boxes, and I have always tried to install the parser DLLs piecemiel with varying degrees of success. I did not know that upgrading IE would also upgrade the MSXML parser set; I must have missed that at the microsoft downloads site. chiph I...
  4. Gamera99

    Is there not a User object?

    When I wrote that last post "This will tell you who is currently logged into the machine", your big post "for anyone who is interested" had not yet appeared on this thread; So my post just ended up repeating what you had already posted, I think the two posts must have been...
  5. Gamera99

    Is there not a User object?

    This will tell you who is currently logged into the machine Response.Write(&quot;<br>windowsName = &quot; & System.Security.Principal.WindowsIdentity.GetCurrent.Name) Response.Write(&quot;<br>windowsIsAuth = &quot; &...
  6. Gamera99

    Is there not a User object?

    This will populate the indicated textboxes with all of the authentication data. void Page_Load(Object sender, EventArgs e) { IIdentity id = HttpContext.Current.User.Identity; if(null != id) { contextName.Text = id.Name; contextIsAuth.Text =...
  7. 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...
  8. Gamera99

    Whats Wrong with this Update Statement

    dvannoy if the field values are from text boxes where forces unknown could type literally anything, then make sure to do replace statements to get rid of single apostrophes: DBInsert.CommandText = &quot;UPDATE Table &quot; & _ &quot;SET Field1 = '&quot; &...
  9. Gamera99

    build date &amp; time

    Thanks Chip I will try that. Nelson
  10. Gamera99

    button onclick

    Thanks for helping; I think I will try to rebuild the page and see what happens. Nelson
  11. Gamera99

    build date &amp; 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...
  12. 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...
  13. Gamera99

    Does anyone have experience develop

    Thanks flumpy I could never figure it out. I've done sites that were all SSL and sites that were all anonymous access but it never occurred to me that I could access a single site using either http:// or https://. I appreciate your help! Nelson
  14. Gamera99

    Does anyone have experience develop

    Thank you flumpy The thing that gets me, when you look at amazon.com for example, their site is http://amazon.com until you get to the point where you use a credit card, and then it switches to https://amazon.com. Do they have a separate website with the https:// SSL and another with the http://...
  15. 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...
  16. 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...
  17. Gamera99

    Loosing session between frames

    CDNJungler The same thing happened to me on two of my sites. The session was dropping dead when users viewed pop windows on my site and closed them. Closing the pop windows would close the session! The session variables would all drop dead. I tested this over and over, writing all session...
  18. Gamera99

    How to call a asp function from onchange event?

    Haijun Your page would have to redirect back to itself, thereby reloading the page. The querystring that you set in the redirect (thispage.asp?update=category) would be read at the top of the page (If Request.QueryString(&quot;update&quot;) = &quot;category&quot; then ...). then your page...
  19. 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 &quot;money&quot; data type elements which has 4 numbers to the right of the decimal point. When I display the...
  20. 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...

Part and Inventory Search

Back
Top