Awais Umar
Awais Umar

Reputation: 2075

Use Fiddler 2 To Attach A New File

Question: Is it possible to attach a new file on the online server using fiddler? I know the autoresponder feature but it replaces the file i think...

What I Want: Let say there is a file on the server http://www.myserver.com/page/index.html and a stylesheet "style.css" is linked to it. Now, what do to if I want to attach a new stylesheet on this live server say "stylesheet_2.css" without replacing "style.css"? So when the page http://www.myserver.com/page/index.html loads on my computer, two stylesheets (style.css and stylesheet_2.css) start working on it.

Is that possible?

Upvotes: 0

Views: 607

Answers (1)

Jason Li
Jason Li

Reputation: 1585

Create a file called 'combined.css', put both 'style.css' and 'stylesheet_2.css' in it.

In Fiddler Autoresponser, set a rule to match the 'style.css' and response the 'combined.css'.

Upvotes: 1

Related Questions