Click here to Skip to main content
15,906,106 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: problem in clearing the sessions Pin
Amit Spadez27-May-10 18:24
professionalAmit Spadez27-May-10 18:24 
GeneralRe: problem in clearing the sessions Pin
Amit Spadez27-May-10 18:41
professionalAmit Spadez27-May-10 18:41 
GeneralRe: problem in clearing the sessions Pin
Ryan McBeth28-May-10 3:35
Ryan McBeth28-May-10 3:35 
GeneralRe: problem in clearing the sessions Pin
Amit Spadez28-May-10 3:52
professionalAmit Spadez28-May-10 3:52 
QuestionMessage Removed Pin
24-May-10 22:32
Dot-Net-Dev24-May-10 22:32 
AnswerRe: User Login through http post Pin
saini arun24-May-10 23:32
saini arun24-May-10 23:32 
GeneralRe: User Login through http post Pin
R. Giskard Reventlov24-May-10 23:52
R. Giskard Reventlov24-May-10 23:52 
QuestionMAC address code issue [modified] Pin
Abdul-Rhman Alsri24-May-10 21:41
Abdul-Rhman Alsri24-May-10 21:41 
This code to find the MAC address of a PC connected to the internet.
What's a sName in the code?
public class GetMacAddressFromIPAddress
  {
   [DllImport("iphlpapi.dll", ExactSpelling=true)]
   public static extern int SendARP( int DestIP, int SrcIP, [Out] byte[] pMacAddr, ref int PhyAddrLen );
   public string GetMacAddress(string sName)
   {
     string s = string.Empty ;
     System.Net.IPHostEntry Tempaddr = null;
     Tempaddr = (System.Net.IPHostEntry)Dns.GetHostByName(sName);
     System.Net.IPAddress[] TempAd = Tempaddr.AddressList;
     string[] Ipaddr = new string[3];
     foreach(IPAddress TempA in TempAd)
     {
 Ipaddr[1] = TempA.ToString();
 byte[] ab = new byte[6];
 int len = ab.Length;
 int r = SendARP( (int) TempA.Address, 0, ab, ref len );
 string sMAC = BitConverter.ToString( ab, 0, 6 );
 Ipaddr[2] = sMAC;
 s = sMAC;
     }   
     return s;         
   }
  } 


modified on Tuesday, May 25, 2010 4:01 AM

AnswerRe: MAC address code issue Pin
Peace ON24-May-10 21:53
Peace ON24-May-10 21:53 
GeneralRe: MAC address code issue Pin
Abdul-Rhman Alsri25-May-10 4:36
Abdul-Rhman Alsri25-May-10 4:36 
QuestionIIS as web server Pin
NetQuestions24-May-10 21:35
NetQuestions24-May-10 21:35 
AnswerRe: IIS as web server Pin
Peace ON24-May-10 21:46
Peace ON24-May-10 21:46 
QuestionImport contacts from Gmail and Yahoo in Asp.net Pin
NetMan201224-May-10 21:31
NetMan201224-May-10 21:31 
AnswerRe: Import contacts from Gmail and Yahoo in Asp.net Pin
Peace ON24-May-10 21:36
Peace ON24-May-10 21:36 
QuestionInvalid postback or callback argument error Pin
sudheesh kumar s24-May-10 20:47
sudheesh kumar s24-May-10 20:47 
QuestionEditable gridview in ASP.NET MVC 2.0 Pin
M. K. BASHER24-May-10 19:34
M. K. BASHER24-May-10 19:34 
AnswerRe: Editable gridview in ASP.NET MVC 2.0 Pin
Peace ON24-May-10 20:03
Peace ON24-May-10 20:03 
GeneralRe: Editable gridview in ASP.NET MVC 2.0 Pin
M. K. BASHER24-May-10 23:47
M. K. BASHER24-May-10 23:47 
Questionselecting data from excel sheet Pin
swtlibra24-May-10 19:10
swtlibra24-May-10 19:10 
AnswerRe: selecting data from excel sheet Pin
Gaurav Dudeja India24-May-10 19:12
Gaurav Dudeja India24-May-10 19:12 
GeneralRe: selecting data from excel sheet Pin
swtlibra24-May-10 19:46
swtlibra24-May-10 19:46 
GeneralRe: selecting data from excel sheet Pin
Gaurav Dudeja India24-May-10 20:48
Gaurav Dudeja India24-May-10 20:48 
QuestionDataList HeaderTemplate Problem Pin
jitendrafaye24-May-10 18:59
jitendrafaye24-May-10 18:59 
Questioncalender Pin
luckydear24-May-10 18:42
luckydear24-May-10 18:42 
QuestionLoad Excel file into Database using FileUpload Control Error Pin
cheguri24-May-10 18:35
cheguri24-May-10 18:35 

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.