Search

You searched for the word(s): userid:838371

Matching Posts

  • IP address

    As you know asp.net membership has the mechanism that it locks out user's account if he/she tries to authenticate herself with false password five times. My question is how do i know the IP address from where these attempts were made? I checked out the ASP.NET built-in tables but there is nothing like IP address. Thanks
    Posted to Security (Forum) by KulerMaster on 12/18/2009
  • Necessary Services

    I was wondering what services are necessary for VS 2008 to work properly? I want to disable ALL services but those really needed for VS. It would be perfect if one can provide the list with the necessary services running in background. Thanks
    Posted to Visual Studio 2008 (Forum) by KulerMaster on 11/2/2009
  • Local User Profile

    I just moved to Win 7 and then i copied some old ASP.NET 3.5 projects to the new environment. Earlier i was working on Vista and they all worked like a charm but, now i get the following error: Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed. Description: An unhandled exception occurred during the execution of the current web request
  • select rows saved in the last 20 minutes

    How do i select the records that have been saved in the last 20 minutes? Will something like this work? Sorry but i can't test it at the moment. SELECT * FROM MyTable WHERE DateAdded > DATEADD(minute, -20, GETDATE())
  • Re: JavaScript issue

    ok but is it possible to accomplish it with using only server-side controls? There must be solution ... i hope. Thanks
    Posted to Client Side Web Development (Forum) by KulerMaster on 10/11/2009
  • Weird exception

    Message: Thread was being aborted. Source: mscorlib Method: Void AbortInternal() Stack Trace: at System.Threading.Thread.AbortInternal() at System.Threading.Thread.Abort(Object stateInfo) at System.Web.HttpResponse.End() The line that throws the exception is just redirect method that worked just fine so far. Response.Redirect("anotherpage.aspx?param=value");
    Posted to Getting Started (Forum) by KulerMaster on 10/11/2009
  • Re: Weird exception

    yes it is inside try catch block actually. But why for god's sake it would throw that exception? How it matters the try catch block? Thanks
    Posted to Getting Started (Forum) by KulerMaster on 10/11/2009
  • JavaScript issue

    How do i display the iFrame only if the button is clicked. I have another control on the form that causes the postback but i want it to be ignored. I have the following JS code: function ShowWait() { document.getElementById("Div1").style.display="none"; var IFrame = document.getElementById("WaitFrame"); IFrame.style.display = "block"; window.scrollTo(0,0); return true; } <form id="form1" onsubmit="ShowWait();" runat="server">
    Posted to Client Side Web Development (Forum) by KulerMaster on 10/10/2009
  • Re: JavaScript issue

    In addition, i was wondering if it's possible to add the UseSubmitBehavior property to the CheckBox control?
    Posted to Client Side Web Development (Forum) by KulerMaster on 10/10/2009
  • Re: JavaScript issue

    this is not applying in my situation. I have dozens textbox controls and one checkbox and one button control. When i click checkbox it copies entries from the left column textbox's to the right column textboxes. But it also triggers the OnSubmit event which is odd. I would want the button <asp:Button to be the only control that fires this event. Thanks
    Posted to Client Side Web Development (Forum) by KulerMaster on 10/10/2009
Page 1 of 15 (142 items) 1 2 3 4 5 Next > ... Last »