Search results for query: *

  1. K

    Question sys.user$ lcount field not resetting

    I am working with an asp.net/vb.net application whose users have oracle accounts to connect to the application. The database is set up to allow three failed login attempts. When connecting directly to the database, the sys.user$ lcount field increments on unsuccessful login attempts, and resets...
  2. K

    problem with console app

    I don't have any suggestions but I'm having the same problem ... have you been able to find a solution?
  3. K

    Capital letters in a textbox

    There is an easier way!!! Add Style="text-transform: uppercase;" to your textbox. <asp:TextBox id="test" Style="text-transform: uppercase;" Runat="server"></asp:TextBox> Thats it! Thats all you need!
  4. K

    Calling an event in asp.net

    Just a guess, but would this work? Search_Click(nothing, nothing)
  5. K

    Execute client script from behind code on server

    Add runat="server" to your button parameters like this: <button style="LEFT: 450px; POSITION: relative; BACKGROUND-COLOR: #8799cc" onclick="execute" type="button" id="button2" disabled runat="server">Crossload</button> and that should add the WithEvents declaration in your code behind...
  6. K

    Pop up a message before prompting to Save Word

    Good morning, I'm not sure if I'm posting this in the right place, but hopefully someone will be able to help me out! I'm developing a web application using asp.net. Long story short: I want to pop up an alert box and, when the user clicks 'OK', prompt them to save a word document. Right now...
Back
Top