Search

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

Matching Posts

  • Re: Mixed authentication

    Fixed! - It was a permisions problem on the database. the problem was that for that error, the default page was the login page so we never saw the error message.
    Posted to Security (Forum) by Codescribler on 8/26/2008
  • Mixed authentication

    I have a Web application which uses Mixed authentication. That is people access the site from within our network just use the application without actualy logging on to the application. However, if you accesss the application externaly it requests a user name and password. The AD authentication works on both our test server and production, however, the manual forms authentication login page doesnt work on the live box. The code on both boxes is identical appart from connection strings to databases
    Posted to Security (Forum) by Codescribler on 8/26/2008
    Filed under: mixed Authentication dual local network
  • Accessing a file on the client side

    Hi All, I have a web application that is mainly (90%) used from within my network. I want this asp.net app to access a text file on the client side in which I want to store the users AD domain and username. I can understand why I cant do that on a 'normal' website without the users express permision but this is internal and i am the network admin. I have tried accessing the user name in various ways (System.Security.Principal) etc but as soon as i put it on my server (internal to network
    Posted to Security (Forum) by Codescribler on 8/11/2008
  • Re: Refferencing another project

    Yes they do have a namespace and I am using it correctly in the 'Using' directive but it is not listed there at all. No I cant access it the objects with a fully qualified path namespace ect.
    Posted to Visual Studio 2005 (Forum) by Codescribler on 6/2/2008
  • Refferencing another project

    Hi All, I have a service project which refferences a generated data access layer (which i know works). I added the refference by right mouse clicking on 'Refferences' and selecting add a refference. I added the refference to the DAL library project in the same solution. Nothing unusual so far I hope. My problem is that in any class in my service project when I try to add a 'using' statement to import the library it is not listed in inteli-sence and cannot be added. I have done lots
    Posted to Visual Studio 2005 (Forum) by Codescribler on 5/29/2008
  • GUID loosing its value

    Hi All, I have an odd situation where a front end ASP.Net C# app talks to a VB.Net data access layer. I needed to add the the ability to pass a guid into a page via the query string. I then take the string representaton of the GUID and turn it into a GUID and call the data access layer to get the object by ID. When I follow the code through the GUID looses its value when it goes from the C# code to the VB code. Any ideasd whats going on here? Danny
    Posted to C# (Forum) by Codescribler on 2/19/2008
  • Re: Encryption and Decryption

    SOLVED! It is realy daft - you have to decrypt the cipher text twice. What was the point of the ' passwordIterations' variable!
    Posted to Visual Basic .NET (Forum) by Codescribler on 2/1/2008
  • Re: Encryption and Decryption

    I have used the code from the following website: http://www.obviex.com/samples/encryption.aspx It half works. When I encrypt some plain text and imediately decypt it just to check, it works. When I come to decrypt it from the database it doesnt. Clearly something is happening in the data layer or database. Is there a specific data type i should be using? Any ideas would be very helpful.
    Posted to Visual Basic .NET (Forum) by Codescribler on 2/1/2008
  • Re: Encryption and Decryption

    I am trying a different approach - also copied from an example on the web. The following code encrypts the plain text but the decrypted text is still scambled despite using the same key. Any ideas? 1 Public Shared Function Encrypt1( ByVal toEncrypt As String , ByVal key As String ) As String 2 3 Dim keyArray() As Byte 4 Dim toEncryptArray() As Byte = UTF8Encoding.UTF8.GetBytes(toEncrypt) 5 6 7 Dim hashmd5 As MD5CryptoServiceProvider = New MD5CryptoServiceProvider() 8 keyArray = hashmd5.ComputeHash
    Posted to Visual Basic .NET (Forum) by Codescribler on 1/25/2008
  • Re: Encryption and Decryption

    Very good point about the keys. Obvious now I come to think of it! Yes I did copy verbatum from the MSDN site.
    Posted to Visual Basic .NET (Forum) by Codescribler on 1/25/2008
Page 1 of 10 (98 items) 1 2 3 4 5 Next > ... Last »