Would like create a STS for common loging

Hi,
I am trying to create Common login screen for multiple application for this i have chosen STS. But I am unable to find any guidance to develop in 2013 Visual Studio. Could you please provide us any information related to this like steps to create and host
the STS.

Here is an example of one Snippet I frequently use.  A double click inserts the following code.
<!--LATEST JQUERY CORE LIBRARY-->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<!--FANCYBOX plugins-->
<link href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.css" rel="stylesheet" media="screen">
<script src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.js"></script>
<!--invoke FANCYBOX on page load-->
<script>
jQuery(document).ready(function() {
$.fancybox(
'<h2>Hi!</h2><p>Your custom message here...</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis mi eu elit tempor facilisis et neque</p>',
'autoDimensions'    : false,
'width'             : 400,
'height'            : 'auto',
'transitionIn'    : 'elastic',
'transitionOut'    : 'elastic',
'overlayOpacity'    : 0.8,
'speedIn'        :600,
'speedOut'    :400,
'overlayColor'    : '#FFF'
</script>
Or, if you prefer, you could insert those Snippets into a server-side include file.
Nancy O.

Similar Messages

  • I would like to use tethering for my camera Nikon D610 in lightroom (version 5.4 is installed). When will lightroom support this camera with tethering?

    I would like to use tethering for my camera Nikon D610 in lightroom (version 5.4 is installed). When will lightroom support this camera with tethering?

    We'll know when it happens, Lucht - software companies don't make support promises in advance.

  • I would like to download iMessage for my mac book pro.

    I would like to download iMessage for my mac book pro OS X, 10.8.1. When I try to install imessage it says that I need 10.7. What do I have to do to get imessage installed?

    It sounds like you already have iMessages setup. Did you sign into iCloud from system preferences and did you also add your iCloud account to Mail?
    They should, just sign you into iMessages when you load Messages.app.
    If you are only being asked to put in your AIM id (which it is really asking for your APPLE ID) then it means that you are already signed into iMessages (hopefully)
    To check this, go to Messages>Preferences>accounts and choose iMessages. Make sure that it says it is enabled.
    Now close out of the preferences, and then hit cmd 0, to bring up the Chat Box.
    The Chat box lets you use iMessages begin a conversation with a friend in your contacts.
    simply type their name into the TO field at the top of the chat box and find a contact with "IMessages" next to their name. Hover over that contact, and if a blue Talk Bubble comes up next to the name, that account is ready to receive iMessages.
    Click the account and begin a conversation.
    If you have setup everything correctly with your Apple ID on your iDevices as well as in Messages on OSX, you should be able to have a synced conversation with all of them.
    Please note, if you were using your Apple ID with iChat before ML, then you most certainly have an AIM account and you were using it in the past. If you want a buddy list, then you should follow the prompt to sign in with your AIM account, but treat it like it is asking you for an Apple ID. Sign in with your apple id to the aim account it asks you to sign into and then you'll have your old iChat buddy list back.
    iMessages does not have a buddy list associated with it. you need to organize your Contacts with their user information and then you need to use the To field in the chat box to communicate and find people with iMessages. Only gtalk, jabber, aim, bonjour, yahoo have the ability to show you a buddy list. iMessages buddy list is Contacts.app
    if iMessages is not enabled, you can enable it by clicking on the iMessages account in Messages>preferences>accounts and then signing in with the same apple id you have tied to your iOS devices.
    I hope this helps.

  • It concerns adobe export pdf program. When we open  this program, it appears on the right of the screen." recognize the text in english"but. we would like to change it for french language. Because when we export the document under word program , it uses

    It concerns adobe export pdf program. When we open  this program, it appearsq on the right of the screen." recognize the text in english"but. we would like to change it for french language. Because when we export the document under word program , it uses english dictonnary to correct the text. thanks for your answer..

    [topic moved from Developers to Acrobat.com forum]

  • I would like a assembly diagram for my photosmart 6970 because its been apart

    I would like a assembly diagram for my photosmart 6970 because its been apart and I need to know that every thing is in order.    Karen

    Is this the Photosmart 7960? What specific areas are you interested in?  There is no assembly diagram or service manual available for the Photosmart 7960, it is not intended for user service.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How would I create buttons states for MCs I am creating abstract MCs

    I am creating a generic website that would have abstract MCs that would load jpg or TXT fields for the user interface to allow for fast updates to the site. The MCs that would make up the user interface would be empty and load things into it using XML or PHP later on. How would I create button states for the user interface MCs.  I started creating a function for every MC button state but I thought there might be a more efficient way.
    would creating a array help in this case?
    and is using URLRequest the way to link to pages with in a movie well the flash movie that is the site it's self?
    /*---------------------------- THE START OF MY ACTION SCRIPT ------------------------------*/
    var waywardLogo_mc:MovieClip = new MovieClip;
    var theCollection_mc:MovieClip = new MovieClip;
    var newsPage_mc:MovieClip = new MovieClip;
    var whatthe#$@!doyouwant!?_mc:MovieClip = new MovieClip;
    /*---------------------------- onOver ------------------------------*/
    waywardLogo_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    theCollection_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    newspage_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    whatthe#$@!doyouwant!?_mc.addEventListener(MouseEvent.ROLL_OVER,onOver);
    /*---------------------------- onOut ------------------------------*/
    waywardLogo_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    theCollection_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    newspage_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    whatthe#$@!doyouwant!?_mc.addEventListener(MouseEvent.ROLL_OUT,onOut);
    /*---------------------------- onClick ------------------------------*/
    waywardLogo_mc.addEventListener(MouseEvent.CLICK,onClick);
    theCollection_mc.addEventListener(MouseEvent.CLICK,onClick);
    newspage_mc.addEventListener(MouseEvent.CLICK,onClick);
    whatthe#$@!doyouwant!?_mc.addEventListener(MouseEvent.CLICK,onClick);
    function onOver(event:MouseEvent):void
    event.target.alpha = .5;
    function onOut(event:MouseEvent):void
    event.target.alpha = 1;
    function onClick(event:MouseEvent):void
    event.target.URLRequest("");
    /*---------------------------- onover, onOut, onClick buttonModes ------------------------------*/
    waywardLogo_mc.buttonMode = true;
    theCollection_mc.buttonMode = true;
    newspage_mc.buttonMode = true;
    whatthe#$@!doyouwant!?_mc.buttonMode = true;

    click insert/new symbol, tick movieclip, assign a name, tick export for actionscript and in the class textfield enter a name (say ButtonClass) and click ok.
    attached to the first frame of your new movieclip, type stop() in the actions panel.  put whatever graphic you want on-stage for your button's up stage.  create another keyframe, label it "over" and put whatever graphic you want for button's over state on-stage.
    in a layer above those graphics, you'll probably want to add a dynamic textfield so each of your buttons can have different text.  assign the textfield and instance name (say tf) and extend its timeline to the last frame of your movieclip button.
    then when you want to create a button, on your timeline you can use:
    var b:ButtonClass=new ButtonClass();  // these two lines need to be entered for each button
    buttonhandlerF(b,someX,someY);
    //-------code between dotted lines only needs to be entered once no matter how many buttons you add --------------------
    function buttonhandlerF(b:ButtonClass,x:Number,y:Number){
    b.addEventListener(MouseEvent.MOUSE_OVER,overF);
    b.addEventListener(MouseEVent.MOUSE_OUT,outF);
    b.x=x
    b.y=y
    addChild(b);
    function overF(e:MouseEvent){
    e.currentTarget.gotoAndStop("over");
    function outF(e:MouseEvent){
    e.currentTarget.gotoAndStop(1);
    //-------code between dotted lines only needs to be entered once --------------------
    // you'll also want to create a click listener and listener function
    the code between the dotted lines is amenable to being added to a ButtonClass.as class file if want to expand your capabilities.

  • I would like to sign up for the HP online classes. But it does not allow me to.

    I would like to sign up for the HP online classes.  But it does not allow me to. Each time I click on the button I get an error message from internet explorer.

    Hi Kathleen: Can you tell me what version Internet Explorer you are using? In the mean time you can sign up for classes by visting web-site. http://h30187.www3.hp.com/?tab=atHome&jumpid=hpr_R1002_USEN  Ounce you signed in the rest of the stuff is done through e-mail. I can only give direction on how to set setting in Internet Explorer 8. Internet Explorer 9 I would have to go to MSN.com Read all the website pages and watch all the demo videos. Buy the way is this a new computer? If so in your Internet Explorer  favorites all HP links are listed in HP file. They are preprogram in the computer. Just click on link that has a line on the bottom. Web page will open to sign up for classes.

  • I would like to get certified for the SAP Crystal Reports. So, I would like to get some info about the currently available Certification Exams for Crystal Reports (2011/2013). Also, would greatly appreciate  if you have any suggestions for thi

    Hi,
            I would like to get certified for the SAP Crystal Reports. So, I would like to get some info about the currently available Certification Exams for Crystal Reports (2011/2013). Also, would greatly appreciate  if you have any suggestions for this Certification Exam preparation materials from another 3rd party or from SAP directly .  I would like to prepare or get trained well before taking the exam as I see it costs around $500.
    Thanks in advance for your help in this regard!
    Sincerely,
    J

    Please search here.. Training and Certification Shop for your desired certification or training. Don't forget to set your location.
    Please use some summarized title for your query.

  • I would like to purchase lightroom for my laptop. I would like to speak to a knowledge person from the company about this.

    I would like to purchase lightroom for my laptop. I would like to speak to a knowledgeable person from the company

    There are some very knowledgeable people who can help you on the forum if you will just ask your questions. But if you want to try to contact Adobe, here is a number you can try:
    Contact the Adobe Store

  • I would like to get iMovie for my mac book pro I got it from the apps store but when i download it right at the end it says It will not download

    I would like to get iMovie for my mac book pro I got it from the apps store but when i download it right at the end it says It will not download i need help i bought my mac used if that makes a difference

    Hey hvs2340,
    Thanks for the question. I understand that you are experiencing an issue downloading iMovie from the Mac App Store. The following resource may provide a solution:
    Troubleshooting the Mac App Store
    http://support.apple.com/kb/TS3624
    Thanks,
    Matt M.

  • Any suggest ..I would like to using skype for rem...

    Any suggest ..I would like to using  skype for remote services with  payment gateway / wall 
    For example a customer need to pay in order to contact and getting an online lesson 
    Thanks 
    Yossi 

    There are a couple examples of non-controller code available at the National Instruments Developer Zone (http://zone.ni.com). I would suggest searching for "+gpib +non-controller" for a list of links to various documents on the subject.
    Ryan Mosley
    National Instruments, Applications Engineer
    http://wwww.ni.com/exchange

  • I purchased an iPhone 5S using my EDGE upgrade on September 5, but would like to exchange it for an iPhone 6 within the 14 day period. Other than having to pay the $35 restocking fee, will I have any problems doing so? Thanks

    I purchased an iPhone 5S using my EDGE upgrade on September 5, but would like to exchange it for an iPhone 6 within the 14 day period. Other than having to pay the $35 restocking fee, will I have any problems doing so? Thanks

        Good evening udflyers! You should not have any problem returning/exchanging your current within 14 days http://bit.ly/IeiJI of purchase. However, you may have to preorder the device you want as it is not currently available and preorder start on 9/12/14 at 12:01am, PST. Please process your return/exchange thru the same channel as your original purchase.
    AntonioC_VZW Follow us on Twitter at www.twitter.com/VZWSupport

  • HT201209 Is there anyway to transfer the credits to another device? I redeemed my itunes gift card on my sisters ipad and I would like to get something for my dad but it says that the card has already been redeemed. Thank you!

    I redeemed my itunes gift card on my sisters ipad and I would like to get something for my dad but it says that the card has already been redeemed. Is there a way to unredeem or transfer the credits? Thank you!

    No, once you redeem a card to your account, it is permanently there, until you spend the amount you have redeemed.

  • HI, I JUST GOT IPHONE 5S AND WOULD LIKE TO DEFINE NO OF MAIL IN MAIL BOX, BUT THIS FEATURE NOT AVAILABLE WITH 5S, HOW TO DEFINE IT. AS NOW ITS SYNC ALL MAIL IN MY INBOX, I WOULD LIKE TO DEFINE NO FOR SAME. PL HELP ME.

    HI, I JUST GOT IPHONE 5S AND WOULD LIKE TO DEFINE NO OF MAIL IN MAIL BOX, BUT THIS FEATURE NOT AVAILABLE WITH 5S, HOW TO DEFINE IT. AS NOW ITS SYNC ALL MAIL IN MY INBOX, I WOULD LIKE TO DEFINE NO FOR SAME. PL HELP ME.
    MANU

    Your question doesn't make much sense in English. To have no mail in your in box, you need to delete what you have.

  • I would like to get refund for download a book by misstake.

    I would like to get refund for download a book by misstake.

    All purchases are considered final, but you can try contacting iTunes support : http://www.apple.com/support/itunes/contact - click on Express Lane then iTunes > iTunes Support

Maybe you are looking for