Click here to Skip to main content
16,007,858 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to activate the custom shorcut keys in <iframe> ??</iframe> Pin
VB 8.013-Nov-08 1:34
VB 8.013-Nov-08 1:34 
QuestionJava script Error help is needed Pin
Rameez Raja13-Nov-08 0:57
Rameez Raja13-Nov-08 0:57 
AnswerRe: Java script Error help is needed Pin
Elayaraja Sambasivam13-Nov-08 1:31
Elayaraja Sambasivam13-Nov-08 1:31 
QuestionHow to pass 2 parameter as a querystring in Hyperlink's DataNavigateURLFormatString in GridView Pin
Tarun Dudhatra13-Nov-08 0:56
Tarun Dudhatra13-Nov-08 0:56 
AnswerRe: How to pass 2 parameter as a querystring in Hyperlink's DataNavigateURLFormatString in GridView Pin
SachinKumar M13-Nov-08 3:42
SachinKumar M13-Nov-08 3:42 
QuestionHow to get the client machine name in c# Pin
surigu13-Nov-08 0:40
surigu13-Nov-08 0:40 
AnswerRe: How to get the client machine name in c# Pin
Brij13-Nov-08 1:17
mentorBrij13-Nov-08 1:17 
AnswerRe: How to get the client machine name in c# Pin
Rutvik Dave13-Nov-08 10:29
professionalRutvik Dave13-Nov-08 10:29 
You can use Windows Management Instrumentation (WMI) to get this information, Try this sample code.

using System;
using System.Management;
using System.Windows.Forms;
  
namespace MyComputerName
{
    public class GetComputerName
    {
        public static void Main()
        {
            try
            {
                ManagementObjectSearcher searcher = 
                    new ManagementObjectSearcher("root\\CIMV2", 
                    "SELECT * FROM Win32_ComputerSystem"); 

                foreach (ManagementObject queryObj in searcher.Get())
                {
                    Console.WriteLine("Client Computer Name is : {0}", queryObj["Name"]);
                }
            }
            catch (ManagementException e)
            {
                MessageBox.Show("Oops ! ERROR : " + e.Message);
            }
        }
    }
}

AnswerRe: How to get the client machine name in c# Pin
Rutvik Dave13-Nov-08 11:00
professionalRutvik Dave13-Nov-08 11:00 
QuestionHow to find a particular pc name in server if all request come from a proxy server Pin
SIJUTHOMASP13-Nov-08 0:00
professionalSIJUTHOMASP13-Nov-08 0:00 
QuestionCrystalReport Error... Pin
sandhya1412-Nov-08 23:49
sandhya1412-Nov-08 23:49 
QuestionVariables Pin
ellllllllie12-Nov-08 23:35
ellllllllie12-Nov-08 23:35 
AnswerRe: Variables Pin
Arun Jacob12-Nov-08 23:52
Arun Jacob12-Nov-08 23:52 
AnswerRe: Variables Pin
Tarun Dudhatra13-Nov-08 0:11
Tarun Dudhatra13-Nov-08 0:11 
AnswerRe: Variables Pin
Christian Graus13-Nov-08 2:18
protectorChristian Graus13-Nov-08 2:18 
GeneralRe: Variables Pin
ellllllllie13-Nov-08 4:46
ellllllllie13-Nov-08 4:46 
Question[Message Deleted] Pin
Lipishree12-Nov-08 23:28
Lipishree12-Nov-08 23:28 
AnswerRe: How to pass information from one gridview to other? Pin
Tarun Dudhatra13-Nov-08 0:05
Tarun Dudhatra13-Nov-08 0:05 
QuestionCant able to edit .net souce code. Pin
Raviraj12-Nov-08 22:03
Raviraj12-Nov-08 22:03 
AnswerRe: Cant able to edit .net souce code. Pin
Padmanabh Ganorkar12-Nov-08 22:07
Padmanabh Ganorkar12-Nov-08 22:07 
GeneralRe: Cant able to edit .net souce code. Pin
Raviraj12-Nov-08 22:22
Raviraj12-Nov-08 22:22 
GeneralRe: Cant able to edit .net souce code. Pin
Padmanabh Ganorkar12-Nov-08 22:47
Padmanabh Ganorkar12-Nov-08 22:47 
GeneralRe: Cant able to edit .net souce code. Pin
Raviraj12-Nov-08 23:07
Raviraj12-Nov-08 23:07 
GeneralRe: Cant able to edit .net souce code. Pin
Padmanabh Ganorkar12-Nov-08 23:21
Padmanabh Ganorkar12-Nov-08 23:21 
GeneralRe: Cant able to edit .net souce code. Pin
Raviraj12-Nov-08 23:37
Raviraj12-Nov-08 23:37 

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.