Hi everyone!
I want to develop an asp.net website which gets an address as an input and fetches all contents of the website and changes links and js path and css paths which causes the content to be displayed correctly, and then Response.Write all of this content to my website.
My question is that what's problems with this work, I mean about security. Isn't it dangerous when I write direct content to my page?
meanwhile, I want to change for example any css link like:
http://www.targetdomain.com/style.css
to
http://www.mydomain.com/GetContent.aspx?url=http://www.targetdomain.com/style.css
Thank you.