TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
abc xyz
NA
1
1k
how to set proxy setting for mozilla for win xp and 8
Aug 16 2014 10:44 AM
To set proxy i access pref.js file and write following piece of code:
first access path :
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\Mozilla\Firefox\Profiles\"
And then set proxy to 5 for win 7 :
string str = File.ReadAllText(arrProfDirs[i] + "\\Prefs.js");
if (str.IndexOf("user_pref(\"network.proxy.type\", 5);") == -1)
{
str += "user_pref(\"network.proxy.type\", 5);";
}
in this way i did for win 7. what should i make changes to this code to set proxy for win8 and xp?
Reply
Answers (
0
)
ASP.NET
C# listview item changes image