TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
anjali khan
NA
293
65.9k
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>
<asp:CheckBox ID="chkyes" Text="Yes" runat="server" AutoPostBack="true" onclick="fncheck(this)" />
<asp:CheckBox ID="chkno" Text="No" runat="server" AutoPostBack="true" onclick="fncheck(this)" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
Reply
Answers (
18
)
how to show monthly attendance of an employee in a reapter
How to handle 2 User Controls in one ASPX Page