Click here to Skip to main content
15,890,506 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to be allowed to start/stop windows service via ASP.NET page Pin
led mike26-Mar-09 5:04
led mike26-Mar-09 5:04 
AnswerRe: How to be allowed to start/stop windows service via ASP.NET page Pin
Yusuf26-Mar-09 5:43
Yusuf26-Mar-09 5:43 
GeneralRe: How to be allowed to start/stop windows service via ASP.NET page Pin
Herman<T>.Instance26-Mar-09 22:36
Herman<T>.Instance26-Mar-09 22:36 
GeneralRe: How to be allowed to start/stop windows service via ASP.NET page Pin
Yusuf27-Mar-09 0:49
Yusuf27-Mar-09 0:49 
Questionhow i get the ip address of client machine Pin
jayesh pune26-Mar-09 3:52
jayesh pune26-Mar-09 3:52 
AnswerRe: how i get the ip address of client machine Pin
David Mujica26-Mar-09 3:59
David Mujica26-Mar-09 3:59 
AnswerRe: how i get the ip address of client machine Pin
Peter Mühlhofer26-Mar-09 4:00
Peter Mühlhofer26-Mar-09 4:00 
AnswerRe: how i get the ip address of client machine Pin
Herman<T>.Instance26-Mar-09 4:35
Herman<T>.Instance26-Mar-09 4:35 
We use a method for this functionality

static public String GetClientIP(Page page)
    {
        //Find the users own IP
        String strIpAddress = String.Empty;
        try
        {
            strIpAddress = page.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
            if (strIpAddress == null)
                strIpAddress = page.Request.ServerVariables["REMOTE_ADDR"];
            if (strIpAddress == null)
                strIpAddress = page.Request.UserHostAddress;
        }
        catch 
        {
            strIpAddress = "IP address not found";
        }
        return strIpAddress;
    }


In Word you can only store 2 bytes. That is why I use Writer.

Questionpagination through dataset Pin
bikash pattanayak26-Mar-09 3:18
bikash pattanayak26-Mar-09 3:18 
AnswerRe: pagination through dataset Pin
Yusuf26-Mar-09 3:27
Yusuf26-Mar-09 3:27 
AnswerRe: pagination through dataset Pin
Vimalsoft(Pty) Ltd26-Mar-09 4:06
professionalVimalsoft(Pty) Ltd26-Mar-09 4:06 
AnswerRe: pagination through dataset Pin
Blue_Boy26-Mar-09 4:07
Blue_Boy26-Mar-09 4:07 
QuestionDrop down list selected value changed Pin
scar_face26-Mar-09 2:26
scar_face26-Mar-09 2:26 
AnswerRe: Drop down list selected value changed Pin
mr_muskurahat26-Mar-09 2:35
mr_muskurahat26-Mar-09 2:35 
AnswerRe: Drop down list selected value changed Pin
tech60326-Mar-09 14:08
tech60326-Mar-09 14:08 
AnswerRe: Drop down list selected value changed Pin
nish11126-Mar-09 21:05
nish11126-Mar-09 21:05 
Questionnot working in server Convert wmv file to flv file Pin
vnsraj26-Mar-09 1:55
vnsraj26-Mar-09 1:55 
AnswerRe: not working in server Convert wmv file to flv file Pin
Yusuf26-Mar-09 3:30
Yusuf26-Mar-09 3:30 
Questionhow to minimize asp.net page size? Pin
dev sheoran26-Mar-09 0:57
dev sheoran26-Mar-09 0:57 
AnswerRe: how to minimize asp.net page size? Pin
Abhijit Jana26-Mar-09 1:35
professionalAbhijit Jana26-Mar-09 1:35 
GeneralRe: how to minimize asp.net page size? Pin
dev sheoran26-Mar-09 2:00
dev sheoran26-Mar-09 2:00 
Questionsteps for creating Web Service Pin
Ratnadeep_Raul26-Mar-09 0:20
Ratnadeep_Raul26-Mar-09 0:20 
AnswerRe: steps for creating Web Service Pin
Abhijit Jana26-Mar-09 1:40
professionalAbhijit Jana26-Mar-09 1:40 
GeneralRe: steps for creating Web Service Pin
Ratnadeep_Raul26-Mar-09 2:06
Ratnadeep_Raul26-Mar-09 2:06 
GeneralRe: steps for creating Web Service Pin
Abhijit Jana26-Mar-09 2:27
professionalAbhijit Jana26-Mar-09 2:27 

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.