Posted on: 4/13/2014 10:40:42 AM | Views : 372

hi dear, i am currently using microsoft windows 8 64 bit architecture. i want to check the system architecture of any system using web page in asp.net. i am that code
if (IntPtr.Size == 8)<br> {<br> Label1.Text = "x64";<br> <br> <br> } <br> else <br>{ <br>Label1.Text = "x86"; <br>} <br>if (Environment.Is64BitProcess) <br> { <br> Label1.Text = "x64"; <br>} <br> else <br>{ <br> Label1.Text = "x86"; <br>}<br> but this will show the architecture or message "x86". <br>

Go to the complete details ...