Click here to Skip to main content
15,888,803 members
Home / Discussions / ASP.NET
   

ASP.NET

 
General[Message Deleted] Pin
crysler16-Nov-09 23:59
crysler16-Nov-09 23:59 
GeneralRe: asp.net & IE8 Pin
sashidhar17-Nov-09 0:03
sashidhar17-Nov-09 0:03 
AnswerRe: asp.net & IE8 Pin
Abhishek Sur17-Nov-09 1:35
professionalAbhishek Sur17-Nov-09 1:35 
QuestionCan You tell me y? Pin
sashidhar16-Nov-09 23:47
sashidhar16-Nov-09 23:47 
AnswerRe: Can You tell me y? Pin
Abhijit Jana16-Nov-09 23:49
professionalAbhijit Jana16-Nov-09 23:49 
Questioncalling of dll's when both are in same folder Pin
vikas shukla16-Nov-09 23:14
vikas shukla16-Nov-09 23:14 
AnswerRe: calling of dll's when both are in same folder Pin
Abhijit Jana16-Nov-09 23:17
professionalAbhijit Jana16-Nov-09 23:17 
GeneralRe: calling of dll's when both are in same folder Pin
vikas shukla16-Nov-09 23:53
vikas shukla16-Nov-09 23:53 
thank u sir
but my issue is still remaining.
actually this is my first dll
using System;
namespace myfirst
{
public class demo
{
public string getmessage()
{
return "Hi!How Are You";


}
}
}

in folder e:\prac
and more dll is
using System;
using myfirst;
namespace mysecond
{
public class demo1
{
public string getmessage1()
{
demo d=new demo();
string str1=d.getmessage();
Console.WriteLine(str1);
}
}
}
and now i am using csc /t:library mysecond.cs
then i have following error and problem was same.please help me

mysecond.cs(2,7): error CS0246: The type or namespace name 'myfirst' could not
be found (are you missing a using directive or an assembly reference?)
GeneralRe: calling of dll's when both are in same folder Pin
Christian Graus16-Nov-09 23:57
protectorChristian Graus16-Nov-09 23:57 
QuestionPassing Data Between Pages Pin
rhtbhegade16-Nov-09 22:55
rhtbhegade16-Nov-09 22:55 
AnswerRe: Passing Data Between Pages Pin
Christian Graus16-Nov-09 23:04
protectorChristian Graus16-Nov-09 23:04 
AnswerRe: Passing Data Between Pages Pin
Abhishek Sur16-Nov-09 23:06
professionalAbhishek Sur16-Nov-09 23:06 
AnswerRe: Passing Data Between Pages Pin
Abhijit Jana16-Nov-09 23:22
professionalAbhijit Jana16-Nov-09 23:22 
AnswerRe: Passing Data Between Pages Pin
John Bracey17-Nov-09 1:35
John Bracey17-Nov-09 1:35 
Questionthem error? Pin
pss.srinivasan16-Nov-09 22:32
pss.srinivasan16-Nov-09 22:32 
AnswerRe: them error? Pin
Sneha Bisht16-Nov-09 22:35
Sneha Bisht16-Nov-09 22:35 
GeneralRe: them error? Pin
pss.srinivasan16-Nov-09 22:39
pss.srinivasan16-Nov-09 22:39 
AnswerRe: them error? Pin
Anurag Gandhi16-Nov-09 22:39
professionalAnurag Gandhi16-Nov-09 22:39 
AnswerRe: them error? Pin
sashidhar16-Nov-09 22:45
sashidhar16-Nov-09 22:45 
GeneralRe: them error? Pin
pss.srinivasan16-Nov-09 23:40
pss.srinivasan16-Nov-09 23:40 
GeneralRe: them error? Pin
Abhijit Jana16-Nov-09 23:46
professionalAbhijit Jana16-Nov-09 23:46 
GeneralRe: them error? Pin
sashidhar16-Nov-09 23:57
sashidhar16-Nov-09 23:57 
GeneralRe: them error? Pin
Shameel17-Nov-09 4:55
professionalShameel17-Nov-09 4:55 
QuestionSqlDataReader Problem Pin
Amit Patel198516-Nov-09 21:02
Amit Patel198516-Nov-09 21:02 
AnswerRe: SqlDataReader Problem Pin
Richard MacCutchan16-Nov-09 21:15
mveRichard MacCutchan16-Nov-09 21:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.