anjali khan

anjali khan

  • NA
  • 293
  • 61.6k

how to use dll in another project in asp.net?

Sep 21 2015 1:27 AM
how to use dll in different web based project in asp.net

i created project like useddllindiffproject

i bulid so dll will be created

i want use this dll to another web based project but how?

please send me step by step explation..

dont send me any url becz i checked but my application is not working..

please share the ans as soon as possible ..i am sending the code also

and my code is


<head runat="server">
    <title></title>
    <script type="text/javascript">
        function fncheck(me) {
            me.checked = true;
            var chkary = document.getElementsByTagName('input');
            for (i = 0; i < chkary.length; i++) {
                if (chkary[i].type == 'checkbox') {
                    if (chkary[i].id != me.id)
                        chkary[i].checked = false;
                }
            }
        }   
    </script></head>
<body>
    <form id="form1" runat="server">
    <h3 style="font-size:larger; color:Maroon">
        User Control</h3>
    <div style="width: 100%;">
    <table style="width: 33%; background-color: Silver; height: 98px;">
        <tr>
            <td>
                <asp:Label ID="Label1" runat="server" Text="Some Text" ForeColor="Blue"></asp:Label>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                <asp:CheckBox ID="chkyes" Text="Yes" runat="server" AutoPostBack="true" onclick="fncheck(this)" />
                &nbsp;&nbsp;
                <asp:CheckBox ID="chkno" Text="No" runat="server" AutoPostBack="true" onclick="fncheck(this)" />
            </td>
        </tr>
    </table>
    </div>
    </form>
</body>
</html>


Answers (18)