Reading the expressions of assignments nested inside an If activity

I have an If activity, with assignment activities in each of the Then and Else activities.  I need to read the expressions being used.  I can use WorkflowInspectionServices to get the activities, but how can I tell one from the other?  
What Im doing is de-serializing a workflow from a xaml file, creating the main activity, then trying to determine what the different parts of the If activity are.  Since the assignments are activities themselves, I can use a similar approach - getting
the child activities of the If activity, but then how do I tell which one belonged to the Then vs the Else ?

Well,  its not working.  Im still not sure how to get at the different parts of the assignment activities.  Below is the code Im using.
The collection 'lif' is a List<If> and as you can see, im trying to get at the different pieces of each assignment activity contained within the Then/Else.  What am I missing?  
//build collection that mimics the sequence of individual rules
foreach (If i in lif)
//Each If activity has a Then and Else, each are also activities
Activity ThenActivity = i.Then;
Activity ElseActivity = i.Else;
// TODO: TargetParameters could be different for If and Then
retval.Add(new RuleInfo()
Condition = i.Condition.Expression.ToString(),
ThenValue = ThenActivity != null ? ((Assign)ThenActivity).Value.Expression.Result.Expression.ToString() : "",
TargetParameter = ThenActivity != null ? ((Assign)ThenActivity).To.Expression.Result.Expression.ToString() : "",
ElseValue = ElseActivity != null ? ((Assign)ElseActivity).Value.Expression.Result.Expression.ToString() : ""

Similar Messages

  • HI THERE!IS THERE ANY ONE WHO CAN HELP ME HAVING TROUBLE WITH MY IPHONE 3GS AFTER UPGRADING TO IOS5.0 IT WONT READ THE SIM AND NO SERVICE  AND IT WONT ACTIVATED.PLEASE HELP

    HI THERE IS THERE ANYONE WHO CAN HELP ME?I UPGRADE MY IPHONE 3GS TO IOS5 AND NOW IT WONT ACTIVATE AND SAYS THE SIM CARD IS NOT SUPPORTED I CHANGE FOR ANEW SIM ALREADY BUT STILL WONT ACTIVATE.PLEASE HELP

    you're responding to a post that's almost 2 months old. Time to post your own thread.

  • Insert JQuery .html into text field nested inside of symbol

    This is one of those, 'it should be so simple....so of course, it's not' question.
    Got a nested symbol. Rather simple one. Inside the symbol is a background rectangle and a text field. When I click a button, it should insert the HTML I give it from the click event.
    Now initially I did this by just using the text field by itself. No nesting. This is the code:
    sym.$("copy").html("Edge Rocks!");
    OK, success! The text loaded just fine.
    Now let's insert that text field inside of a symbol. And let's call that symbol 'content'.
    Now I try....
    sym.$("content").$("copy").html("Some new text");
    Result? Nothing.
    Tried using stage instead of sym and even added a var stage = sym.getComposition().getStage() statement before that. Nope.
    Yea, they don't make it easy. So what's the solution?
    Here's my example file.
    https://www.dropbox.com/s/5n1ehhsp7r3rbt6/text.zip?m
    BTW, ran this in Firebug's console. No errors.

    Yes and no, Elaine. Kind of confusing but if the button is directly on the stage, that code works. However, if that button gets nested inside of its own symbol, the code no longer works and a JS error appears in console.
    So in other words, the button and the text field are nested inside of symbols, but not the same symbol. So it's a question of the path being used.
    I tried switching sym to Stage to no effect.
    Redid the test file and uploaded it to Dropbox:
    https://www.dropbox.com/s/ha24ki0wp0fb2nw/text2.zip?m

  • My mac will not read my express

    My MAc wont read the express and the light is staying yellow but my extreme is up and fine

    Pull the AirPort Express from power
    Temporarily, connect an Ethernet cable from your Mac to the AirPort Express
    Power up the AX and allow 40-45 seconds for it to fully restart
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Configure the AirPort Express as needed
    Once you have  green light on the AirPort Express, you can disconnect the Ethernet cable and locate the Express where is it is needed.

  • How  to trace() a variable nested inside another clip that is created at run time by the user ???

    Hi again Now i have another problem
    i explain :  on my stage i have 24 instance MC Page created at runtime (when cliked the button execute 24 instance MC Page from the library). Each of those MC Page create an xml  with infos (not important), this variable_XML created is nested inside each MC Page.. From my stage i want to call each XML from each MC Page  for make 1 unic  big xml, then send it to the server.
    So from the main stage i created a button that call each xml of each MC Page (there is a definit number of Page only 24, no more, no less). So
    when the 24 instances of the MC Page are created I push there instance name inside an Array "Page_Array". Now in my function exportxml
    i use get ChildByName(Page_array[number]) for find them then i can apply my method to the according MCPage.. Until here no problem, trace(dispObject.name) work. but when i try to get my variable inside the MC Page : trace(dispObject.my_variableXML), it doesnt work...Why ??
    here is my function (only 1 page for this example ):
    function exportxml(evt:MouseEvent):void {
        dispObject=getChildByName(Page_Array[0]);
        trace(dispObject.name); //trace  Page1
         trace(dispObject.my_variableXML);// here it dont trace the variableXML
    normally if i trace(Page1.my_variableXML); , it should trace "my_varableXML"  no ??

    when i export my movies Im so worried  to see if it work that  i clicked the button that trigger the function exportxml before the actual my_variableXML is created , so is normal that the code above didnt work... so all is normal and it work... sorry i will think 10 time before posting next time. promess .

  • [svn:fx-trunk] 8024: Fixed an injection where setting the 'content' property of Spark text component to a TextFlow would cause you to get a TextFlow nested inside a TextFlow .

    Revision: 8024
    Author:   [email protected]
    Date:     2009-06-19 16:59:25 -0700 (Fri, 19 Jun 2009)
    Log Message:
    Fixed an injection where setting the 'content' property of Spark text component to a TextFlow would cause you to get a TextFlow nested inside a TextFlow.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-21906
    Reviewer: Carol to review
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21906
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/RichText.as

    Well, I've already solved one of the two issues
    In order to display the icons on my buttonbar buttons, I just needed to point at {hostComponent.data.data} instead of {hostComponent.data}. I'm not sure why, but {hostComponent.data} in my skin class is a handle on my instance of ButtonBarButton, not its "data" property. Any explanation is welcomed
    I still have got the first issue though. Oddly enough my design works if I put an mx Image instead of the spark BitmapImage for the client logo. That will do the trick for the moment but I'd prefer to deliver a 100% pure spark component in my prototype, and I can see no reason why BitmapImage works inside my ButtonBarButtons and doesn't otherwise...

  • How to make an applet to read the Text file present inside a jar

    Hi All,
    I have writen one applet named ReadFile.java which reads a text file present in the same directory and does some manipulation of text file contents.
    The applet code runs successfully when i run the applet in command prompt like
    {color:#ff0000}*java ReadFile*{color}
    And i am getting the needed results.
    Then i made a jar file with the applet code and text file as
    {color:#ff0000}*jar cvf rf.jar ReadFile.class File1.txt*{color}
    Then i have inlcuded this applet inside a html file as
    {color:#ff0000}*<applet code= "ReadFile.class" width= "500" height= "300" archive = "rf.jar" ></applet>*{color}
    after this when i load the html file, the applet code is not executed fully. Its throwing FileNotFoundException: File1.txt.
    Applet is not recognizing trhe text file present inside the jar file.
    Can any body explain me how to overcome this problem. Any setting needs to be done for making the applet indicate the presence of Text file inside the jar file.

    what code in your applet gets the text file and reads it? are you using getResource or something similar?

  • Hello, I have an iPad Mini WiFi Cellular white 16Gb and I puted my sim inside it but, I cant read the text message that I recieve in the Sim. What can i do? And I can't put the sim in a cellphone coz it doesn't recognize it. Please help me! Thank you.

    Hello, I have an iPad Mini WiFi Cellular white 16Gb and I puted my sim inside it but, I cant read the text message that I recieve in the Sim. What can i do? And I can't put the sim in a cellphone coz it doesn't recognize it. Please help me! Thank you.

    iPads do not do SMS.

  • Read values from Adobe Interactive Form inside the webdynpro

    Hello,
    I have problems to read the values of the fields inside de adobe. I read an article on saptechincal that told:
    You can see the Adobe form that we have designed, enter the data as shown below and press the submit button. (As I said earlier an activex control will be installed on to the client machine, you can see the activex control in the internet explore go to the menu: ToolsàInternet optionsàgo to the programs tab àPress button Manage add-ons.
    You can see an activex control named u2018SAP ACFu2019, if you donu2019t have this control you will not see this page: Note you need to have adobe acrobat reader 7.1 installed, I have used version 9, the activex control was not working properly so down graded my adobe reader to 7.1)
    This is true ???  I have the Acrobat reader 9.3 and i saw that also have the SAP ACF installed.
    The value of the property displaytype  on adobe interactive form on webdynpro is activeX or native.
    Thank you in advance.

    Hi,
    <p>
    Thank you for the answer.
    <P>
    I change the value of the attribute but again i can read anything from the adobe form. So let me explain what i'm doing.
    <P>
    Objective: I have to create one webdynpro with an adobe interactive form for create new clients on r/3 system.
    <P>
    1. I create de the view with 2 elements an interactive form and one submit button.
    <P>
    2. Create the context of the view with the following tree:
    <P>
    > context (node)
    <p>
       > ADOBE_DATA (node)
    <p>
          > Clients (from KNA1 table) (node)
    <p>
             > KUNNR
    <p>
             > LAND1
    <p>
             > NAME1
    <p>
             > ORTO1
    <p>
             > TELF1
    <p>
      >PDF_SOURCE
    <p>
    3. Complementing the properties of the interactive form:
      datasource = clients node of the context
      displaytype = native
      pdf_source = pdf_source attribute of the context
      templatesource = name of the form
    <p>
    4. Create the form, and add the data source to the interface of the form
    <p>
    5. On the form bulider i add and subform on the hierarchy tab and the all the fields of the interface to the form and
    automatically the value of the fields are binding.
    <p>
    6.Add a submit button from web dynpro native and add the event click to the button. Then i change the value of the layout type and save e activate the form and the interface
    <p>
    7. The next step is create an action for the button submit for the event  "onSubmit". So i create the function and start coding this code:
    <p>
    DATA: adobe_node    TYPE REF TO if_wd_context_node,
    <p>
            client_node   TYPE REF TO if_wd_context_node,
    <p>
            client_element TYPE REF TO if_wd_context_element,
    <p>
            client        TYPE if_create_client=>element_clients.
    <p>
    *Get reference to the adobe_data node from the context
    <p>
    adobe_node = wd_context->get_child_node( name = wd_this->wdctx_adobe_data ).
    <p>
    *Get reference to the clients node from the context
    <p>
    client_node = adobe_node->get_child_node( name = wd_this->wdctx_clients ).
    <p>
    *Get element node
    <p>
    client_element = client_node->get_element( ).
    <p>
    *Get the values from the form
    <p>
    client_element->get_static_attributes(
    <p>
        IMPORTING
    <p>
          static_attributes = client ).
    <p>
    8. Then for finalize i add the view to the window and crate a web dynpro application and put one break point on the submit function event.
    <p>
    9. Activate and test the application and when the program try to add a reference to the element node always returning a null reference and the application dumped.
    <p>
    So please help with this situation i can't understand what is the mistake.
    <p>
    PS: Now i have installed the acrobat reader 7.0.8
    <p>
    Edited by: miglsilva on Sep 4, 2010 5:50 PM
    Edited by: miglsilva on Sep 4, 2010 6:01 PM

  • WF: deadline configuration:  How can I read the deadline expression config

    Hi all,
    For a certain report, I need to be able to read the latest start, req start, reqested end expressions as they are visible in the workflow builder for a certain WS-TS combination.  How do I do that?  Are there any functions, classes available to read this info in a simple manner?  This is the configuration data, so not the runtime.
    Best Regards

    SWD_GET_WORKFLOW_STEPS
    or
    SWD_GET_WF_EXPRESSION_TABLE

  • HT4587 How do you read the Serial Number on the back of the Airport Express? It is sop small and silver writing on hite background?

    How do you read the Serial Number on the back of the Airport Express? It is sop small and silver writing on white background?

    http://support.apple.com/kb/ht3546

  • Can't read the airport express configuration

    hi there,
    i've got an AIPORT EXPRESS (b/g) V 6.3, which has been working marvellously for 4 year, with 3 different laptop ( powerbook, macbook pro and PC).
    since last week end, my connection on internet was really slow (with the ethernet cable the connection is really fast as usual).
    So I've reseted it. then reconfigure it. no problem.
    then this saturday my girl friend couldn't see the network on her PC.
    so I've resetted it again!
    since then my macbook pro see it, also my airport utility, but it can't connect to it....
    airport utility says :reading the airport express configuration... and nothing !!!!
    EDIT: also iTunes can't see the AE anymore...
    i just don't know what to do.
    thank you for your solution
    (hope my english not to bad)
    Message was edited by: Relaxxx
    Message was edited by: Relaxxx

    Hello Relaxxx. Welcome to the Apple Discussions!
    Although I know you have tried several resets, please try another "factory default" reset to get the AirPort Express Base Station (AX) back to its original factory configuration so that we can administer it.
    After resetting it, connect your MacBook Pro directly, using an Ethernet cable, to the Ethernet port of the AX, and then, run the AirPort Utility to configure it. Where you able to access it now?
    Once configured, you can disconnect the Ethernet cable. Using the AirPort Status icon in the menu bar, verify that you are connected to the AX's wireless network. Are you now able to both find it and connect from the icon?
    Once you verified that you can access the AX, both via wire and wirelessly from the Mac, try the PC.

  • Regular Expressions - How can I read the char of a text using the index?

    Assuming that, this is a findWord function which searches in a text and returns the indexes that a given word is located. How to read the characters that are located some pos before each index?
    Kind regards,
    Vag.
    public static void findWord(String type) {
            int count = 0;
            String regex = "<a word>";
            String text = readFile("data/raw/" + type + "/" + type + ".page.all.txt");
            Pattern pattern = Pattern.compile(regex);
            Matcher matcher = pattern.matcher(text);
            System.out.print("Word <a word> was found at positions");
            while (matcher.find()) {
                count++;
                System.out.print(", " + matcher.start());
            System.out.println(" at a total of " + count + " times!");
        }

    Read the API docs for java.util.regex.Matcher. The matcher object exposes this data via start() and end() methods.

  • Reading the email from outlook express

    hi,
    i want to read the emails in the inbox of outlookexpress.how to do in java.Also i want to send emails.what package should i use? kindly help me.

    http://developer.java.sun.com/developer/onlineTraining/JavaMail/

  • Template is nested inside itself (directly or indirectly)

    Hello helpful folks of the Forum.  
    I had a template (test.dwt) based on which 60 of my pages are built and I dont know what happened now that whenever I try to update, all the editable contents of the 60 pages gets deleted.  I was getting an error "template is nested inside itself (directly or indirectly)
    Can someone please take a look at the template and let me know what is wrong and how I can fix it.   If I create a similar tempalte and name it test.dwt, will it work ?    Thanks for your help.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Welcome to Sringeri Vidya Bharati Foundation (Canada)</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
    <meta name="SVBF" content="SVBF, Sringeri Temple, Sringeri Vidya Bharati Foundation, Sharadamba Temple, Ganesha, Hanuman, Hanuman Chalisa, Sathyanarayana Pooja, Shasti Bhajans, Brydon Drive, Sringeri, " />
    <title></title>
    <style type="text/css">
    <!--
    .style28 {
              font-size: 36px;
              font-weight: bold;
    .style49 {
              font-weight: normal;
              font-family: Cambria;
              font-size: 14px;
    -->
    </style>
    <style type="text/css">
    <!--
    p.MsoNormal {
    margin-top:0cm;
    margin-right:0cm;
    margin-bottom:10.0pt;
    margin-left:0cm;
    line-height:115%;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    -->
    </style>
    <script language="javascript" type="text/javascript">
    <!--
         Author: Eric King
         Url: http://redrival.com/eak/index.shtml
         This script is free to use as long as this info is left in
         Featured on Dynamic Drive script library (http://www.dynamicdrive.com)
    var win=null;
    function NewWindow(mypage,myname,w,h,scroll,pos){
    if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):1 00;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
    if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.h eight)?(screen.height-h)/2:100;}
    else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+ scroll+',location=yes,directories=no,status=yes,menubar=no,toolbar=no,resizable=yes';
    win=window.open(mypage,myname,settings);}
    // -->
    </script>
    <script type="text/javascript" src="http://svbfcanada.com/SVBF/jsmenu/stmenu.js"></script>
    <style type="text/css">
    <!--
    .style1 {
              color: #FFFFFF;
              font-size: 12px;
              font-family: Cambria;
              font-weight: bold;
    .style2 {
              color: #FFFFFF;
              font-size: 14px;
              font-family: Cambria;
              font-weight: bold;
    .style3 {color: #CCCCCC}
    body {
              background-color: #FFFFCC;
    .style6 {
              font-size: 12px;
              font-family: Verdana, Arial, Helvetica, sans-serif;
    .border1 {
              border: 1px solid #000000;
    .style11 {color: #000000}
    .style12 {color: #FFFFFF}
    .style13 {font-weight: bold}
    .style14 {font-size: 14px}
    .BG1 {
              background-image: url(http://www.svbfcanada.com/SVBF/images/BG1.jpg);
              background-repeat: no-repeat;
    .style15 {font-size: 12px}
    .style17 {
              font-size: 16px;
              font-weight: bold;
              font-family: Cambria;
    .style19 {font-size: 16px}
    .style21 {font-weight: bold}
    -->
    </style>
    </script>
    <script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <script language="JavaScript1.1">
    <!--
    //Pixelating Image slideshow
    //Copyright Dynamic Drive 2001
    //Visit http://www.dynamicdrive.com for this script
    //specify interval between slide (in mili seconds)
    var slidespeed=3000
    //specify images
    var slideimages=new Array("http://www.svbfcanada.com/SVBF/images/Navara2012.jpg","http://www.svbfcanada.com/SVBF/images/diwalidance.JPG","http://www.svbfcanada.com/SVBF/images/sivarathri.jpg","http://www.svbfcanada.com/SVBF/images/navarathri2011.JPG", "http://www.svbfcanada.com/SVBF/images/AbdulKalam.JPG","http://www.svbfcanada.com/SVBF/images/narasimhajayanti.JPG")
    //specify corresponding links
    var slidelinks=new Array("http://www.svbfcanada.com/SVBF/photogallery.html")
    var imageholder=new Array()
    var ie55=window.createPopup
    for (i=0;i<slideimages.length;i++){
    imageholder[i]=new Image()
    imageholder[i].src=slideimages[i]
    function gotoshow(){
    window.location=slidelinks[whichlink]
    //-->
    </script>
    <style type="text/css">
    .menutitle{
              cursor:pointer;
              margin-bottom: 5px;
              background-color:#ECECFF;
              color:#000000;
              width:306px;
              padding:2px;
              text-align:center;
              font-weight:bold;
              /*/*/border:1px solid #000000;/* */
    .submenu{
    margin-bottom: 0.5em;
    .style22 {font-weight: bold}
    .style23 {font-family: Cambria}
    .style28 {
              font-size: 18px;
              font-weight: bold;
              font-family: Cambria;
    </style>
    <script type="text/javascript">
    * Switch Menu script- by Martial B of http://getElementById.com/
    * Modified by Dynamic Drive for format & NS4/IE4 compatibility
    * Visit http://www.dynamicdrive.com/ for full source code
    var persistmenu="yes" //"yes" or "no". Make sure each SPAN content contains an incrementing ID starting at 1 (id="sub1", id="sub2", etc)
    var persisttype="sitewide" //enter "sitewide" for menu to persist across site, "local" for this page only
    if (document.getElementById){ //DynamicDrive.com change
    document.write('<style type="text/css">\n')
    document.write('.submenu{display: none;}\n')
    document.write('</style>\n')
    function SwitchMenu(obj){
              if(document.getElementById){
              var el = document.getElementById(obj);
              var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
                        if(el.style.display != "block"){ //DynamicDrive.com change
                                  for (var i=0; i<ar.length; i++){
                                            if (ar[i].className=="submenu") //DynamicDrive.com change
                                            ar[i].style.display = "none";
                                  el.style.display = "block";
                        }else{
                                  el.style.display = "none";
    function get_cookie(Name) {
    var search = Name + "="
    var returnvalue = "";
    if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) {
    offset += search.length
    end = document.cookie.indexOf(";", offset);
    if (end == -1) end = document.cookie.length;
    returnvalue=unescape(document.cookie.substring(offset, end))
    return returnvalue;
    function onloadfunction(){
    if (persistmenu=="yes"){
    var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
    var cookievalue=get_cookie(cookiename)
    if (cookievalue!="")
    document.getElementById(cookievalue).style.display="block"
    function savemenustate(){
    var inc=1, blockid=""
    while (document.getElementById("sub"+inc)){
    if (document.getElementById("sub"+inc).style.display=="block"){
    blockid="sub"+inc
    break
    inc++
    var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
    var cookievalue=(persisttype=="sitewide")? blockid+";path=/" : blockid
    document.cookie=cookiename+"="+cookievalue
    if (window.addEventListener)
    window.addEventListener("load", onloadfunction, false)
    else if (window.attachEvent)
    window.attachEvent("onload", onloadfunction)
    else if (document.getElementById)
    window.onload=onloadfunction
    if (persistmenu=="yes" && document.getElementById)
    window.onunload=savemenustate
    </script>
    </head>
    <body>
    <center>
    <script language=JavaScript>
    <!--
    //Disable right click script III- By Renigade ([email protected])
    //For full source code, visit http://www.dynamicdrive.com
    var message="";
    function clickIE() {if (document.all) {(message);return false;}}
    function clickNS(e) {if
    (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) {(message);return false;}}}
    if (document.layers)
    {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
    else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
    document.oncontextmenu=new Function("return false")
    // -->
    </script>
    <table width="1092" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCCCC">
      <!--DWLayoutTable-->
      <tr>
        <td height="57" colspan="8" valign="top" bgcolor="D69306"><p align="right"><script language="JavaScript">
    var now = new Date();
    var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
    var months = new Array('January','February','March','April','May','June','July','August','September','Octo ber','November','December');
    var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
    function fourdigits(number)          {
              return (number < 1000) ? number + 1900 : number;
    today =  days[now.getDay()] + ", " +
                  months[now.getMonth()] + " " +
                   date + ", " +
                    (fourdigits(now.getYear())) ;
    document.write("" +today+ ".");
    </script> </p>      <p align="center"><script type="text/javascript" src="http://www.svbfcanada.com/SVBF/jsmenu/svbfcanada.js"></script>
          </p></td>
        </tr>
      <tr>
        <td height="210" colspan="8" valign="top" bgcolor="#d69306"><img src="http://www.svbfcanada.com/SVBF/images/SVBFBanner2.jpg" width="1092" height="210" /></td>
        </tr>
      <tr>
        <td width="43" rowspan="8" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
          <!--DWLayoutTable-->
          <tr>
            <td width="44" height="1181"> </td>
              </tr>
        </table></td>
        <td width="4" height="17"></td>
        <td colspan="2" rowspan="2" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCCCC">
          <!--DWLayoutTable-->
          <tr>
            <td width="321" height="1150" valign="top" bgcolor="#CC9933"><div style="margin-top: -25px;  "Important days at the temple this month.">
              <p align="center" class="style19" style="background: #CC9933; color: #2D251E; margin: 5px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><br />
                <strong><span class="style21"><u>            TEMPLE TIMINGS</u></span><BR/>
                  <span class="style22">WEEKDAYS</span></strong><br />
                8.30 am to 11.30 am<br />
                4.30 pm to 8.30 pm<br/>
                <strong>WEEKENDS</span></strong><br />
                8.30 am to 8.30 pm<br />
                <span class="style14"><br />
                </span></p>
              <div style="margin-top: -25px;  "important="Important" days="days" at="at" the="the" temple="temple" this="this" month.="month."">
                      <p align="center" class="style14" style="background: #CC3333; color: #FFFFFF; margin: 5px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><u><strong>IMPORTANT DATES THIS MONTH</strong></u></p>
                      <p align="left" class="style23 style19" style="background: #CC9933; color: #2D251E; margin: 0px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><strong>
                      05</strong> Papa Vimochana Ekadasi<br />
                       <strong>06 </strong>Pradosham<br />
                       <strong>10</strong> Vaisaka Masam Begins<br />
                      <strong>
                      12</strong> Akshaya Truteya<br />
                      <strong>14</strong> Ramanuja Jayanthi<br />
                      <strong>15</strong> Shankara Jayanthi<br>
                       <strong>18</strong> Hanuman Chalisa<br />
                        <strong>21</strong> Mohini Ekadasi<br>
                        <strong>22</strong> Pradosham<br />
                        <strong>23</strong> Narasimha Jayanthi<br />
                        <strong>24</strong> Sathyanarayana Pooja<br />
                        <strong>27 </strong>Sankatahara Chaturthi</p>
                      <p align="center" class="style28" style="background: #CC9933; color: #2D251E; margin: 0px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><a href="http://www.svbfcanada.com/SVBF/SearchSVBF.html"><img src="http://www.svbfcanada.com/SVBF/images/SearchSVBF.jpg" width="200" height="70" border="0" /></a></p>
                      <p align="center" class="style15" style="background: #CC9933; color: #2D251E; margin: 0px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><span class="style19"><a href="http://www.svbfcanada.com/SVBF/Support.html"><img src="http://www.svbfcanada.com/SVBF/images/donate.jpg" width="285" height="140" Border="0"/></a></span></p>
                      <p align="left" class="style15" style="background: #CC9933; color: #2D251E; margin: 0px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><a href="http://www.svbfcanada.com/SVBF/Directions.html"><img src="http://www.svbfcanada.com/SVBF/images/Directions.jpg" width="305" height="60" border="0" /></a></p>
                      <p align="center" class="style19" style="background: #CC9933; color: #2D251E; margin: 0px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><span class="style17 style23 style22"><span class="style11">Visit our</span> <a href="http://www.svbfcanada.com/SVBF/photogallery.html" class="style6">Photo Gallery</a></span>
                        <script language="JavaScript1.1" type="text/javascript">
    <!--
    var whichlink=0
    var whichimage=0
    var pixeldelay=(ie55)? document.images.slide.filters[0].duration*1000 : 0
    function slideit(){
    if (!document.images) return
    if (ie55) document.images.slide.filters[0].apply()
    document.images.slide.src=imageholder[whichimage].src
    if (ie55) document.images.slide.filters[0].play()
    whichlink=whichimage
    whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
    setTimeout("slideit()",slidespeed+pixeldelay)
    slideit()
    //-->
                            </script>
                      </p>
                      <div align="center"></div>
                      <div align="center"></div>
                      <p align="left" class="style15" style="background: #CC9933; color: #2D251E; margin: 0px 0px 0px 0px; padding: 5px; border: solid #75614F; border-width: 1px 1px 1px 1px;"><a href="http://www.svbfcanada.com/SVBF/photogallery.html"><img src="http://www.svbfcanada.com/SVBF/images/diwalidance.JPG" name="slide" width="306" height="200" border="0" style="filter:progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=15,Duration=1)" color="Black" /></a></p>
    <form id="form3" action="../SVBF/response.php" method="post" onsubmit="return checkform(this);">
                                         <fieldset>
                                         <legend><span class="style23 style12"><strong>Subscribe to our Newslette</strong></span><span class="style12">r</span></legend>
          <p class="first">
            <label for="name">Name</label>
            <input type="text" name="name" id="name" size="30" />
            </p>
          <p>
            <label for="email">Email </label>
            <input type="text" name="email" id="email" size="30" />
          </p>
          <p>
              <label for="code">Enter code below > <span class="style19" id="txtCaptchaDiv" style="color:#000066"><strong></strong></span><!-- this is where the script will place the generated code -->
                <input type="hidden" id="txtCaptcha" /></label><!-- this is where the script will place a copy of the code for validation: this is a hidden field -->
              <input type="text" name="txtInput" id="txtInput" size="30" />
              </p>
              <p class="submit">
                <button type="submit">Send</button>
              </p>
              <div align="center"></div>
              <div align="center">
                <script type="text/javascript">
              function checkform(theform){
                        var why = "";
                        if(theform.txtInput.value == ""){
                                  why += "- Security code should not be empty.\n";
                        if(theform.txtInput.value != ""){
                                  if(ValidCaptcha(theform.txtInput.value) == false){
                                            why += "- Security code did not match.\n";
                        if(why != ""){
                                  alert(why);
                                  return false;
    //Generates the captcha function   
              var a = Math.ceil(Math.random() * 9)+ '';
              var b = Math.ceil(Math.random() * 9)+ '';      
              var c = Math.ceil(Math.random() * 9)+ ''; 
              var d = Math.ceil(Math.random() * 9)+ ''; 
              var e = Math.ceil(Math.random() * 9)+ ''; 
              var code = a + b + c + d + e;
              document.getElementById("txtCaptcha").value = code;
              document.getElementById("txtCaptchaDiv").innerHTML = code;
    // Validate the Entered input aganist the generated security code function  
    function ValidCaptcha(){
              var str1 = removeSpaces(document.getElementById('txtCaptcha').value);
              var str2 = removeSpaces(document.getElementById('txtInput').value);
              if (str1 == str2){
                        return true;
              }else{
                        return false;
    // Remove the spaces from the entered and generated code
    function removeSpaces(string){
              return string.split(' ').join('');
              </script>
                <span class="style12 style23 style15">Subscribe to our Newsletter to   receive updates on happenings at the Temple and the Community Hall </span><br />
              </div>
              <div align="center" class="style12"><small style="text-align:center">reload the page to change the code</small></div>
              </fieldset>
        </form>
                    </div>
                </div></td>
              </tr>
          <tr>
            <td height="152" valign="top" bgcolor="cc9933"><div align="center">
              <p><a href="http://www.tattvaloka.com/"><img src="http://www.svbfcanada.com/SVBF/images/Tattvaloka.jpg" width="306" height="160" border="0" /></a></p>
              <p><a href="http://www.svbfcanada.com/SVBF/TouristToronto.html"><img src="http://www.svbfcanada.com/SVBF/images/TORONTO.jpg" width="306" height="200" border="0" /></a></p>
            </div></td>
          </tr>
        </table></td>
        <td width="43"></td>
        <td width="635"></td>
        <td width="9"></td>
        <td width="37"></td>
      </tr>
      <tr>
        <td height="1410"></td>
        <td></td>
        <td rowspan="2" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
          <!--DWLayoutTable-->
          <tr>
            <td width="640" height="1471" valign="top">
              <div align="center"></div>          <div align="center" class="style49">
                <p> </p>
                  <p><a href="http://www.svbfcanada.com/SVBF/SathyanarayanaPooja.html"></a></p>
                <a href="http://www.svbfcanada.com/SVBF/SathyanarayanaPooja.html"><a href="http://www.svbfcanada.com/SVBF/SathyanarayanaPooja.html"><a href="http://www.svbfcanada.com/SVBF/SathyanarayanaPooja.html"></a></div></td>
              </tr>
          <tr>
            <td height="106"></td>
            </tr>
        </table></td>
        <td></td>
        <td></td>
      </tr>
      <tr>
        <td height="167"></td>
        <td colspan="2" rowspan="2" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
          <!--DWLayoutTable-->
          <tr>
            <td width="318" height="159" valign="top"><div align="center">
              <p><a href="http://www.sringeri.net"><img src="http://www.svbfcanada.com/SVBF/images/sringerinet.jpg" width="306" height="92" border="0" /></a><a href="http://www.svbf.org"><img src="http://www.svbfcanada.com/SVBF/images/svbfusa.jpg" width="306" height="49" border="0" /></a>
                <iframe src="https://www.google.com/calendar/embed?title=SVBF%20Canada%20Calendar&mode=AGENDA&height=30 0&wkst=1&bgcolor=%23cccccc&src=calendarsvbf%40gmail.com&color=%232952A3&ctz=America%2FToro nto" style=" border:solid 1px #777 " width="310" height="300" frameborder="0" scrolling="yes"></iframe>
                <!-- AddThis Button BEGIN -->
    </p>
              <p></p></td>
              </tr>
        </table></td>
        <td></td>
        <td></td>
        <td></td>
      </tr>
      <tr>
        <td height="319"></td>
        <td></td>
        <td> </td>
        <td></td>
        <td></td>
      </tr>
      <tr>
        <td height="19"></td>
        <td width="312"> </td>
        <td width="9"></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
      </tr>
      <tr>
        <td height="20"></td>
        <td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
          <!--DWLayoutTable-->
          <tr>
            <td width="311" height="19" valign="top"><div align="center">
              <p><span class="style17 style23 style22 style3">Visit our Photo Gallery</span>
                <span class="style3">
                  <script language="JavaScript1.1">
    <!--
    var whichlink=0
    var whichimage=0
    var pixeldelay=(ie55)? document.images.slide.filters[0].duration*1000 : 0
    function slideit(){
    if (!document.images) return
    if (ie55) document.images.slide.filters[0].apply()
    document.images.slide.src=imageholder[whichimage].src
    if (ie55) document.images.slide.filters[0].play()
    whichlink=whichimage
    whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
    setTimeout("slideit()",slidespeed+pixeldelay)
    slideit()
    //-->
                      </script>
                  </span></p>
                </div></td>
              </tr>
          <tr>
            <td height="1"></td>
              </tr>
        </table></td>
        <td> </td>
        <td> </td>
        <td> </td>
        <td> </td>
        <td> </td>
      </tr>
      <tr>
        <td height="3"></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
        <td></td>
      </tr>
      <tr>
        <td height="113" colspan="6" valign="top" bgcolor="#6C0F17"><div align="center">
                  <p class="style11 style2"><span class="style12">Sringeri Vidya Bharati Foundation (Canada)<br />
                  80 Brydon Dr., Etobicoke, ON, M9W 4N6 Phone: 416-745-1010<br />
                  Questions or Comments about this website ?
            Email the</span><span class="style12"> <a href="mailto:[email protected]" class="style14 style3">Web Master</a><br />
                    <a href="http://www.svbfcanada.com/SVBF/Disclaimer.php" class="style13 style3">Disclaimer</a> </span></p>
                  <p class="style11"><span class="style1">Copyright © 2008 – 2012 by Sringeri Vidya Bharati Foundation (Canada) All Rights   Reserved.</span><br />
                        <a href="http://www.copyscape.com/plagiarism-finder/"><img src="http://www.svbfcanada.com/SVBF/images/cs-ye-234x16.gif" width="234" height="16" border="0" /></a><br />
            </p>
          </div></td>
      <td> </td>
      </tr>
    </table>
    </td></center>
    </body>
    </html>

    This will happen if you mistakenly save a Child page as a Template.dwt and overwrite your original Template file. Do you have a backup of your original Template stored some place safe?
    In the future, when you have questions related to Dreamweaver, use the Dreamweaver Forum. You'll get better, quicker answers there.
    http://forums.adobe.com/community/dreamweaver?view=discussions
    Nancy O.

Maybe you are looking for

  • Trouble connecting Wii to BEFW11S4

    I've been having troubles connecting my Wii to my BEFW11S4 Ver. 3.0 router as of late.  The Wii finds the connection, but can't get to the Internet.  It keeps giving me the same code (I think it's like 52130 or something), which says that there's an

  • Not able to edit my Sap script form using se71 ?

    I have been working on SAP Script say ZKI_FORM using se71 in polish language. Today When I try to make changes as usual, it is not allowing me to go into change mode . It is giving Error in object Editing like below. " Changes to Repository or cross-

  • Where I can find Logic pro 7.1 upgrade

    I acquired Logic pro 7 software, which I use on PPC G4 computer with Pro Tools Mix++ system. I would like to find 7.1 upgrade. This was actualy free upgrade, Apple sold it for 20$ on DVD (shipping costs).

  • Ibook give power button symbol and forces shut down...why?

    I will be using my ibook for maybe 5mins less sometimes, and then all of a sudden the whole screen goes grey and a box with the power button symbol comes up and says that i have to forcable shut down my computer. This happens even when plugged in and

  • Libvisual not seeing any features

    I'm on Arch x86_64, and have the newest versions of libvisual and libvisual-plugins installed, but Elisa is not showing any visualisations for music. I found that this can be the case if libvisual or libvisual-plugins is not installed - but they are!