Search

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

Matching Posts

  • Digital signing of code for unsigned components

    Hello Guys, This article of mine explains how to sign a code without the need to buy the digital signature for Microsoft Trusted Certificate Authorities. Please note that this would be helpful for test purposes only since it requires you to install the certificate in all client browser using the application. Eventually, a certificate from Trusted Root CA like Verisign, Thawte. Etc has to be bought for insuring that your CAB/ActiveX component is available for use to all without security issues. It
    Posted to Tips & Tricks (Forum) by usmaniac4life on 6/22/2007
    Filed under: Code sample, daily Free Code
  • Re: Restrict access to a folder containing only user controls/images

    Thanks a lot for your answer, Scotty. I was a great reply, but what i wanted was to do it programatically. Apparently my hosting provider wont allow me to change any IIS settings as you mentioned. So is there any other way which would help me to restrict those files? Thanks again for your response. Usman.
    Posted to Security (Forum) by usmaniac4life on 6/19/2007
  • Restrict access to a folder containing only user controls/images

    Hello everyone, I am using forms Authentication using the credentials mentioned in the Web.config file specifying 2 users who can log in to the application. <forms name="appNameAuth" path="/" loginUrl="Login.aspx" protection="All" timeout="30"> <credentials passwordFormat="Clear"> <user name="tom" password="" /> <user name="harry" password="" /> </credentials> </forms>
    Posted to Security (Forum) by usmaniac4life on 6/18/2007
    Filed under: <location>, C#, credentials, .NET 1.1, Access rules
  • Using Single Sign On in Multiple Applications Sharing Same Domain

    Using Forms Authentication Forms Authentication should be used for Single sign on into Multiple Applications. <authentication mode="Forms"> <forms name=".Website" loginUrl="login.aspx" protection="All" timeout="30" path="/"/> </authentication> where ".Website" is the name of the Cookie used to store user credentials for form authentication Modifying the Machine Key The machineKey element might be configured in
    Posted to Security (Forum) by usmaniac4life on 9/6/2006
    Filed under: FormsAuthentication, FormsAuthentication Active Directory, Authentication Redirect
  • Re: Who is Online

    hi, Well, I hope the following piece of code might be useful to anyone out here. 'On the login page or the next page after the login Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'your code here ......................... If Not IsPostBack Then 'Assigning the Users to Application Object 'Tracking Active Users in the Application Dim arrlst As New ArrayList If Application("Users") Is Nothing Then 'arrlst.Add(Session("User_Id")) arrlst.Add(New Userinfo
    Posted to Getting Started (Forum) by usmaniac4life on 4/19/2006
  • Re: How to add content with "multi-space" in dropdownlist?

    Thanks dude, its working Perfectly fine. Usman Suglatwala
    Posted to Web Forms (Forum) by usmaniac4life on 4/6/2006
  • Re: smart navigation using plain javascript

    hi, the code that u sent was great. . its Working abs fine.. thanx.. Usmaniac4life
  • Re: Sorting Of Date Fields

    Thanx Thona for the reply. I would like to put forth some more queries How can I know the Date Column from a Series of Autogenerated Columns, so that I can Convert it into the Format that you have suggested? Where Exactly Should the Code be written. I guess the Best Option wud be to put in ItemDatabound. Everytime the Date is sorted, it should be sorted as a datetime datatype and not as string. While displaying, the Date should be converted to the format dd/MM/yyyy, which again would be convert into
  • Sorting Of Date Fields

    hi, When the autogenerate property of datagrid is set to true, how to perform sorting on date fields. Example: SELECT DC_NO AS [Document No],CONVERT(CHAR(10),DC_DT,103) AS [Document Date], [Name] FROM XYZ Here we convert the date field to the format "dd/mm/yyyy" so when sorting is done it is done in the format "dd/mm/yyyy". But instead sorting should be done in "yyyy/mm/dd" format.
  • changing language of the msgbox

    Since multilanguage support is not available In Windows for Gujarati, How do i change the language of the msgbox to Gujarati.. Moreover how can i Update the Windows Service for any such kind of language support if available. Thanx in advance
    Posted to Localization (Forum) by usmaniac4life on 12/8/2004
Page 1 of 2 (16 items) 1 2 Next >