client side authorization in asp.net web project

Discussion in 'ASP.NET WebServices' started by kpshamilsagar, Feb 5, 2012.

  1. i am developing a server-client program in which server will be showing datas sent by client across a network. without Authentication it works fine but i need some authentication because server side its a website.once i give authentication i am not able to get datas from client.i know that client must be given authorization to put data into server.can anyone tell me how to do that?i am developing based on the link given below

    blog.bobcravens.com/2009/11/browse-files-on-remote-computers

    posting server side authentication code

    <authentication mode="Forms">
    <forms loginUrl="Login.aspx" name=".ASPXFORMSAUTH">


    </forms>
    </authentication>

    <authorization>
    <deny users = "?"/>
    </authorization>
    login.aspx

    <script runat="server">
    Sub Login_Click(ByVal sender As Object, ByVal e As EventArgs)
    If ((UserEmail.Text = "[email protected]") And _
    (UserPass.Text = "000")) Then
    FormsAuthentication.RedirectFromLoginPage _
    (UserEmail.Text, Persist.Checked)
    Else
    Msg.Text = "Invalid credentials. Please try again."
    End If
    End Sub
    </script>
    i have written validation code also.everything works fine on the server side but not able to get data from client side..

    client program is written in c#,client-server communication is via http post.
    i am attaching the error i am getting also.i know its because client cannot login on server to put data.lemme know a way i can solve this problem
     

    Attached Files:

Share This Page