Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IIS configuration

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am a new comer to IIS. I want to configure iis in such a way that for a particular site when an httpt request is made it (ie like should redirect it to to an https request(ie I have heard that u can specify virtual urls in iis .
can anyone help me?
Thnaks
vkodancha
 
Hi!

You have to purchase a digital certificate first after that your site will be secure.For the specific portion of your site you may need to insert this code in your pages.
Put this JavaScript code in the head of your HTML:
<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
function popUp(url) {
sealWin=window.open(url,&quot;win&quot;,'toolbar=0,location=0,directories=0, status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = &quot;mainWin&quot;; }
</SCRIPT>


Next, you'll add the Secure Site Seal graphic as a secure link to the pop-up window. Simply copy the html tag below and edit the URL to match the location of the directory where you've placed the BT TrustWise Secure Site Seal graphic (BTTrustWiseSeal.gif). This link uses the JavaScript code you added a moment ago to open the new browser window.


Put this JavaScript code in the body of your HTML:
<A HREF=&quot;javascript:popUp(' YOUR IDENTIFICATION NUMBER HERE')&quot;>
<IMG SRC=&quot;PATH TO GRAPHIC/BTTrustWiseSeal.gif&quot;WIDTH=&quot;98&quot;HEIGHT=&quot;100&quot; BORDER=&quot;0&quot;></A>


iis_guru@yahoo.com
 
Hi!

here is non java script code you can use this aswell if you don't wnats to use the javascript code.

Non-JavaScript Code
This HTML code is only to be used if you are not using JavaScript on your site. Simply put the code below in the Body of your HTML.

<A HREF=&quot; YOUR IDENTIFICATION NUMBER HERE&quot; TARGET=&quot;new&quot;>
<IMG SRC=&quot;PATH TO GRAPHIC/BTTrustWiseSeal.gif&quot; WIDTH=&quot;98&quot; HEIGHT=&quot;100&quot; BORDER=&quot;0&quot;></A>

NOTE: Please be sure that there are no extra spaces in the &quot;PASTE YOUR IDENTIFICATION NUMBER HERE&quot; area after you have placed your identification number.
iis_guru@yahoo.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top