Click here to Skip to main content
15,891,607 members
Home / Discussions / C#
   

C#

 
GeneralRe: Exporting Class Data To XML Pin
sathish s20-Jun-06 2:39
sathish s20-Jun-06 2:39 
GeneralRe: Exporting Class Data To XML Pin
Kais4U20-Jun-06 18:21
Kais4U20-Jun-06 18:21 
Questiondecimal points in C# Pin
kumar.bs20-Jun-06 1:12
kumar.bs20-Jun-06 1:12 
AnswerRe: decimal points in C# Pin
rvdt20-Jun-06 1:48
rvdt20-Jun-06 1:48 
AnswerRe: decimal points in C# Pin
sathish s20-Jun-06 1:57
sathish s20-Jun-06 1:57 
AnswerRe: decimal points in C# Pin
Wjousts20-Jun-06 3:12
Wjousts20-Jun-06 3:12 
AnswerRe: decimal points in C# Pin
Drew McGhie20-Jun-06 5:04
Drew McGhie20-Jun-06 5:04 
QuestionScripting [modified] Pin
greekius20-Jun-06 1:11
greekius20-Jun-06 1:11 
my question is about IE scripting.
I have 100 notebook client. In Company i have 131.107.2.0 domain.
my proxy server is 131.107.2.7
when employees at work, they can connect to internet using proxy.
But When thay at home, there is no proxy, they have direct internet connection generally.
They cannot connect to net unless they uncheck "use proxy server" at ie properties,connection tab, lan settings part.

So i wantto write a script to prevent this.

I wrote a script but it is not working.

Any idea or where i find any script to do this.

function FindProxyForURL(url, host) {
if ( isInNet(host, "131.107.2.0", "255.255.255.0")
{
return "PROXY 131.107.2.7:8080";
}
else {
return "DIRECT";

}
}
AnswerRe: Scripting Pin
Ed.Poore20-Jun-06 2:10
Ed.Poore20-Jun-06 2:10 
QuestionPrefere Memory or Connection? Pin
Mairaaj Khan20-Jun-06 1:04
professionalMairaaj Khan20-Jun-06 1:04 
AnswerRe: Prefere Memory or Connection? Pin
J4amieC20-Jun-06 1:08
J4amieC20-Jun-06 1:08 
GeneralRe: Prefere Memory or Connection? Pin
Mairaaj Khan20-Jun-06 3:38
professionalMairaaj Khan20-Jun-06 3:38 
GeneralRe: Prefere Memory or Connection? Pin
Mairaaj Khan20-Jun-06 21:22
professionalMairaaj Khan20-Jun-06 21:22 
Questionwindows service in c# Pin
ratheeshkumar20-Jun-06 0:42
ratheeshkumar20-Jun-06 0:42 
AnswerRe: windows service in c# Pin
leppie20-Jun-06 1:49
leppie20-Jun-06 1:49 
Questiondiscussion forum Pin
sasi bhushan20-Jun-06 0:38
sasi bhushan20-Jun-06 0:38 
QuestionXmlSerializer Pin
buzzy8420-Jun-06 0:05
buzzy8420-Jun-06 0:05 
AnswerRe: XmlSerializer Pin
leppie20-Jun-06 1:44
leppie20-Jun-06 1:44 
QuestionRe: XmlSerializer Pin
buzzy8420-Jun-06 2:58
buzzy8420-Jun-06 2:58 
AnswerRe: XmlSerializer Pin
buzzy8420-Jun-06 3:00
buzzy8420-Jun-06 3:00 
GeneralRe: XmlSerializer Pin
buzzy8420-Jun-06 3:02
buzzy8420-Jun-06 3:02 
AnswerRe: XmlSerializer Pin
Dustin Metzgar20-Jun-06 3:39
Dustin Metzgar20-Jun-06 3:39 
AnswerRe: XmlSerializer Pin
stancrm20-Jun-06 3:29
stancrm20-Jun-06 3:29 
AnswerRe: XmlSerializer Pin
LongRange.Shooter20-Jun-06 16:51
LongRange.Shooter20-Jun-06 16:51 
QuestionHow to Create a Dragable window inside a mainwindow Pin
praveenqwe20-Jun-06 0:02
praveenqwe20-Jun-06 0:02 

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.