Search

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

Matching Posts

  • Re: catching database error

    If you are using SQL Server 2005, you can use Try/Catch inside the storedproc like below. BEGIN TRY -- Your code END TRY BEGIN CATCH insert dbo.Application_Error_Log (UserName, tableName, errorNumber, errorSeverity, errorState, errorMessage) values (suser_sname(), @tableName, ERROR_NUMBER(), ERROR_SEVERITY(), ERROR_STATE(), ERROR_MESSAGE()) END CATCH; Hope this helps.
    Posted to Data Presentation Controls (Forum) by santa_1975 on 8/7/2009
  • Re: CSV file vs excel

    Hi, Automating Excel in web is difficult and would lead to permission issues. Whereas, CSV is a plain text file which can be passed on easily. I would prefer CSV if you ask me. But let us know what is your complete requirement so that we can suggest an ideal solution.
    Posted to Getting Started (Forum) by santa_1975 on 8/7/2009
  • Re: .NET and Biometrics

    Hi, The following links should provide you with some basics. http://blogs.msdn.com/coding4fun/archive/2007/03/06/1815291.aspx http://www.devx.com/security/Article/31576 Hope this helps.
    Posted to Free For All (Forum) by santa_1975 on 8/6/2009
  • Re: Unable to close the page

    Change this line to, Response.Write("<script language='javascript'> { window.close(); }</script>"); Or In the Form_Load, write this. lb_logout.Attributes.Add("onclick", "window.close();") Hope this helps.
    Posted to Free For All (Forum) by santa_1975 on 8/6/2009
  • Re: Login failed for user after deploying the site on host server

    Hi, Can you post your connection string here? You can change the db name, UserId/PWD if you do not want to disclose. I think the issue should be with your connection string. See if you have something like this. Data Source=localhost; Initial Catalog=PERSONAL;User ID=personal; Integrated Security=SSPI;Persist Security Info=False; Hope this helps.
  • Re: how to accessing web service

    Hi, Can you elaborate your requirement?
  • Re: Logic For Addtion

    Hi, Can you provide more details on your requirement? This looks like a simple addition.
    Posted to Visual Basic .NET (Forum) by santa_1975 on 8/6/2009
  • Re: Track Page Activity with mouse click

    Hi, I think you would be able to achieve this with the help of a javascript timer. To learn how timer works refer to this link below. http://ejohn.org/blog/how-javascript-timers-work/ And the following link shows how to track mouse movement. http://www.js-x.com/page/javascripts__example.html?view=362 In a similar sense, you would be able to track the mouse click and initiate a timer from that point. If the specified time exceeds you can redirect to another page or stay there. Keep in mind that you
    Posted to Web Forms (Forum) by santa_1975 on 8/6/2009
  • Re: PasswordRecovery: How to include password in email

    Hi, Refer to the tutorial given in the link below. http://quickstarts.asp.net/quickstartv20/aspnet/doc/ctrlref/login/passwordrecovery.aspx I fyou have set a custom message in the password recovery email, make sure you have the place holders "<%UserName%> <%Password%>" in it for the control to place the user name and the password which sending the email. Hope this helps.
    Posted to Security (Forum) by santa_1975 on 8/6/2009
  • Re: Accessing classes/sub visual basic

    Hi, Can you be a little detailed about your exact requirement so it would help us provide optimal solution for hte problem.
    Posted to Web Forms (Forum) by santa_1975 on 8/5/2009
Page 1 of 50 (494 items) 1 2 3 4 5 Next > ... Last »