Mixing javascript & php validation

I have been wrestling with the idea of processing and
validating a page (form) within a single script and I'm still
struggling with it. The source of my problem lies in the code
Dreamweaver creates if you use the 'validate on Submit' behaviour.
The javascript will do some basic validation via a function
called MM_validateForm and return the result via
'document.MM_returnValue'.
This function is associated with the 'submit' button
(onclick) so I can see how we validate, display errors, and check
to see when we come back through the routine, if we've been here
before (if (!$_POST['submit']) etc) but I can't see:
i) What is re-displaying the calling routine in the event of
an error - i.e. why is the page looping around when an error is
found? I guess something in the 'onclick' is somehow interpreting
the validity of the page and redirecting back around when there are
problems but I can't what is driving this.
ii) How I can expand the javascript routine with my own php
code (I'm guessing I can't just add in php code to the function
that Dreamweaver has written) to say, verify logon details against
the db. If we go back around I can add in some extra code that will
be executed on submit but if I get an error in my code, how do I
convey that to the 'onclick' to take me back around again - the
javascript function is in there already ... D'oh!
Are you with me? ...... is there anybody there ....
Thanks.
P.

If the form fails client-side validation, it never submits.
When it
submits, it will submit to a destination -
<form action="destination"...
That destination can be the form page itself, or it can be a
form processing
script on another page. That's where the server side
validation kicks in.
For example, if the form submits to itself, you put some
scripting in the
head of that page that tests to see if the form has been
submitted, e.g., in
PHP that would be -
if(isset($_POST)) {
server validation goes here
If the form is submitting to another page, then obviously,
you don't have to
do this check.
Make sense?
One good reason why you'd want the form to submit to itself,
would be If it
fails the server scripted validation, then you would just let
the form
re-draw, but populate the fields with the data contained in
the $_POST
array, so that the user could make corrections more easily.
Of course, you
can set a variable describing the error(s) this way, and
display them on the
page as well.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"patricktr" <[email protected]> wrote in
message
news:[email protected]...
> Hi Murray,
>
> I've been playing around with this to try and make sense
of it so maybe I
> took
> it off the 'onsubmit' and put it on the 'onclick' - the
point is how when
> you've told it to validate at client level with the
javascript do you then
> tell
> it to validate at the server level?
>
> I'm obviously not making myself clear or it's so
blindingly obvious you
> can't
> understand what my problem is but I'll try again...
>
> Somehow or other when the javascript finishes the system
knows there are
> problems and display a pop-up and forces us back around
the form loop
> again.
>
> I can add in extra php code (if $_POST(SUBMIT...) that
will do more
> rigourous
> validation at the server level (db checks etc) but how
can I get it to
> loop
> back around and re-present itself? If I use 'header
)location ... ' I
> can't
> seem to find a place where it happy to be re-directed -
there is header
> info
> in a non-editable place brought on from a template (I
didn't say that
> befpore I
> must admit) ....
>
> I'm sure this should be easy but .....
>
> P.
>
>
>

Similar Messages

  • How to force using the adobe reader to view the PDF by javascript / PHP / HTML?

    I use the standard way to embed a pdf to my website, however, when I open it the browser will choose the default pdf viewer instead of the adobe reader. I can change it manually by looking at the browser option but it would not be nice if the website visitor need to do this manually. So I would like to know how to force the browser to open the PDF in adobe by using some HTML header / javascript / php or any parameter in object tag. Thanks.
    <object id = 'zoomPage' type='application/pdf' data= '" + sourceFolder + "SingTao/2013/08/17/0/0/A/Content/pdf/pdf_" + currZoomPageNo + ".pdf#toolbar=1&navpanes=0&statusbar=0&messages=0&pagemode=read'><p>The PDF can not display</p></object>

    I know this problem related to the browser behaviour so I would target only :Chrome firefox and IE 9+ (it is ideal if IE8 can also adopt the solution) thanks

  • How can i use C/Javascript/php/Java in flex?

    can i embed these language into my flex project?
    since i have to check harddisk space, free memory remain. Also, i need to check the pixel of photos before the photos becoming bitmapdata
    please help~

    saipanBETTY0509 wrote:
    Subject: How can i use C/Javascript/php/Java in flex?
    can i embed these language into my flex project?
    You can't.  Why do you want to do this?
    saipanBETTY0509 wrote:
    since i have to check harddisk space, free memory remain. Also, i need to check the pixel of photos before the photos becoming bitmapdata
    I think what this means is "I want to check to see how much hard disk space is available.  Also, I need to check the pixel dimensions of an image."
    Is that right?
    There is no way in the Flash Player (as far as I know) that you can determine the amount of free disk space.  However, in AIR you can use air.File.applicationStorageDirectory.spaceAvailable to determine the storage space available in the application storage directory.
    As far as determining the dimensions of an image, there are plenty of good resources out there on that.  Maybe this one will be helpful to you?
    http://www.yswfblog.com/blog/2008/12/22/flash-10-experiments-the-warholizer-loading-and-pr ocessing-local-images/
      -Josh

  • Mix JavaScript and JSP

    Hi.
    I have jsp and javascript mixed when I click a check call a function javascript for example:
    //JavaScript
    function Hola(numerop) {
              idRol = Number(numerop)
              <%nombreRol = roles.get(numerop)%> }
    //Form
    <input type="checkbox" name="<%=roles.get(sum)%>" value="<%=roles.get(sum)%>" onClick="Hola('<%=roles.get(sum)%>')">
    In the function numerop is a number but in the jsp code numerop is undefined.
    How I can mixed javaScript and jsp??
    Please I need help you.

    Remember that the JSP runs on the server and generates the HTML, including Javascript. The Javascript runs on the browser after the JSP is finished. So you cannot do whatever it is you expected that to do.

  • Using Javascript form validation in WordPress - Firefox issues

    I have been struggling for a while to get javascript to validate a WordPress based HTML form which uses radio buttons. I finally came up with a solution with was a bit long-winded but worked - at least in IE and Chrome - however, it doesn't work in Firefox (which suggests my code is a bit sloppy). I think my radio button reference is the issue. Can anyone help with what I have done wrong - apart from use an inefficient approach for validation :-)?
    A simplified version of my form:
    <script>
    function validateForm()
    var aa=document.forms["personalise"]["motivation"]["1a"];
    var ab=document.forms["personalise"]["motivation"]["1b"];
    var ac=document.forms["personalise"]["motivation"]["1c"];
    var ad=document.forms["personalise"]["motivation"]["1d"];
    var ae=document.forms["personalise"]["motivation"]["1e"];
    if (!(aa.checked == true || ab.checked == true || ac.checked == true || ad.checked == true || ae.checked == true))
    alert("Question 1 must be completed");
    return false;
    </script>
    <form name="personalise" action="insertdatatest.php" onsubmit="return validateForm()" method="post">
    1. Are you seriously planning to quit </b>:&nbsp;&nbsp;
    <input id="1a" type="Radio" title="" name="motivation" value="1" /> Within the next 2 weeks
    <input id="1b" type="Radio" title="" name="motivation" value="2" /> Within the next 30 days
    <input id="1c" type="Radio" title="" name="motivation" value="3" /> Within the next 3 months
    <input id="1d" type="Radio" title="" name="motivation" value="4" /> No, I am not currently planning to quit
    <input id="1e" type="Radio" title="" name="motivation" value="5" /> I have already quit
    <input type="submit" value = "Submit">
    </form>
    For My Website : http://www.schoolanduniversity.com

    Thanks for your support,
    This will partly solve the issue I think. Now, the validation is indeed only done for the first form. But I need to save data twice when entering data in the second grid. When checking the error console in mozilla I see following error:
    Error: grid[r] is undefined
    Which is reffering to:
              if ((grid[r] [1] != missing) ||(grid[r][2] != missing) || (grid[r][3] != missing))
    When I save again, the data will be saved without this error.
    Is there a way to exclude the second grid in the if Statement?
    Regards,
    Erik

  • Problem with javascript/PHP/ oracle 10g smart quotes

    I have a problem with my php form that passes the text field to a javascript object. When I copy text from MS Word that includes smart quotes, the form inputs that into the database as ? (upside down) marks. The charset of the DB is WE8MSWIN1252. How do I store these smart quotes as regular quotes? And also if I can do any conversions on the front end (js or php). I tried doing some conversion but to no avail. Any help would be appreciated thank you. “double”

    Decide if you want your HTML pages in Windows code page 1252 or Unicode UTF-8. Then, make sure the pages are properly tagged as either "text/html;charset=windows-1252" or "text/html;charset=utf-8". Use HTTP header Content-type or the corresponding <META HTTP-EQUIV=...> tag. Then, set NLS_LANG environment variable for your PHP engine to either AMERICAN_AMERICA.WE8MSWIN1252 or to AMERICAN_AMERICA.AL32UTF8, depending on which encoding you selected for your HTML.
    -- Sergiusz

  • How do i call servlet from javascript after validation the javascript

    Hi ,
    Can anyone tell me how to call a servlet after the javascript is being validated. Here is my code to validate javascript i need to call a servlet inorder to save the data into the same form. I tried calling through the action method in the form but its directly taking me to the servlet but not validating the form. Is there any way that i can validate the form first then call the servlet.
    Thanks in advance.
    <html>
    <head>
    <title>Online Blog</title>
    <script language ="javascript" type ="text/javascript">
    function myfunction()
    var mesg = "";
    var dmesg = "";
    var dnumber = 0;
    var number = 0
    var Blogstr = document.onlineblog.BlogName;
    var Fnamestr = document.onlineblog.FirstName;
    var Lnamestr = document.onlineblog.LastName;
    var Datestr = document.onlineblog.Dateformat;
    var Imagestr = document.onlineblog.uploadimage;
    var Imageval = Imagestr.value;
    var flength = parseInt(Imageval.length) - 3;
    var fext = Imageval.substring(flength,flength + 3);
    var Dateval = Datestr.value;
    var Dformat = /^\d{2}\/\d{2}\/\d{4}/; //checks the date format.
    //splits date into mm, dd , yyyy format.
    var m = Dateval.split("/")[0];
    var d = Dateval.split("/")[1];
    var y = Dateval.split("/")[2];
    //Get today's date (removes time).
    var today = new Date();
    var dd = today.getDate();
    var mm = today.getMonth()+1;
    var yyyy = today.getFullYear();
    //checks if month and date are displayed in mm, dd format and if not sets to mm,dd.
    if (mm <10)
    mm = '0'+mm;
    if (dd <10)
    dd = '0'+dd;
    //checks if name of the blog is empty
    if(Blogstr.value == "")
    number = number+1;
    mesg += "\n" + number + "Name of the blog";
    //checks if value of Frist Name is empty;
    if(Fnamestr.value == "")
    number = number+1;
    mesg += "\n" + number + "First Name";
    //checks if value of Last Name is empty;
    if(Lnamestr.value == "")
    number = number+1;
    mesg += "\n" + number + "Last Name";
    //checks if value of date is empty;
    if(Datestr.value == "")
    number = number+1;
    mesg += "\n" + number + "Date of mm/dd/yyyy format";
    //checks if value of image field is empty;
    if(Imagestr.value == "")
    number = number+1;
    mesg += "\n" + number + "select an image";
    //displays all the error messages.
    if (number > 0)
    alert ("Please enter the following" + mesg);
    return false;
    //checks if entered date format is mm/dd/yyyy
    if(!Dformat.test(Dateval))
    dnumber = dnumber +1;
    dmesg += "\n" + dnumber + "please enter a valid date(mm/dd/yyyy)";
    //checks if date is greater than 12 and is 2 digits.
    if ((m>12 && m<100) || (m> = 100 && m<1000) || (m==0))
    dnumber = dnumber+1;
    dmesg += "\n" + dnumber + "Enter valid month(mm)";
    //checks if month has 31 or 30 days and is in dd format.
    if (((d>30) && (d<100) && (m == 04 || m == 06 || m == 9 || m == 11)) || ((m == 01 || m == 03 || m == 05 || m == 07 || m == 08 || m == 10 || m==12) && (d >31) && (d<100)) || d == 0)
    dnumber = dnumber+1;
    dmesg += "\n" + dnumber + "Enter valid date(dd)";
    //checks if month has 28 or 29 days and wheather is a leap year or not.
    if((m == 02 && d>29 && y%4 == 0) || (m == 02 && d>28 && y%4 != 0))
    dnumber = dnumber+1;
    dmesg += "\n" + dnumber + "Enter valid date(dd)";
    //checks if entered date is prior to the current date.
    if((m == mm && d == dd && y == yyyy) || (y > yyyy)|| (d>=dd && m>=mm && m<=12 && y==yyyy) || (d<=dd && m>mm && y == yyyy && m<=12))
    dnumber = dnumber + 1;
    dmesg += "\n" + dnumber + "Please enter a date prior to the current date";
    if (y == 0 || y < 1000 || y>9999) //checks if year is zero and is a 4 digit number.
    dnumber = dnumber + 1;
    dmesg += "\n" + dnumber + "Enter a valid year(yyyy)";
    //checks if image format is jpg or gif.
    if(fext != "jpg" && fext != "gif")
    dnumber = dnumber + 1
    dmesg += "\n" + dnumber + "You can only upload gif or jpg images.";
    if(dnumber>0)
    alert("please check the followin error messages"+dmesg);
    return false;
    </script>
    <style type="text/css">
    .style1 {color: #FF0000}
    body {
         background-color: #FFCCFF;
    h2 {
         color: #CC3399;
    h1 {
         color: cc3399;
    .style2 {
         font-family: Arial, Helvetica, sans-serif;
         font-weight: bold;
    .style5 {color: #000000; font-family: "Times New Roman", Times, serif;}
    </style>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><body>
    <h1 align="center">Webloggers space</h1>
    <p align="center">Home
    <p>
    <h4> Please enter the following details to register.</h4>
    <p> <b>Note:</b> All fields marked with <span class="style1">*</span>(astrick)
    are compulsory.</p>
    <form action="servlet/BlogServlet" name="onlineblog" onsubmit = "return myfunction()" method="post">
    <table width="60%" border="0" cellspacing="5" cellpadding="2">
    <tr>
    <td><span class="style1">*</span>Name of the Blog</td>
    <td><input type="text" name="BlogName"/></td>
    </tr>
    <tr>
    <td><span class="style1">*</span>First Name</td>
    <td><input type="text" name="FirstName"/></td>
    </tr>
    <tr>
    <td><span class="style1">*</span>Last Name</td>
    <td><input type="text" name="LastName"/></td>
    </tr>
    <tr>
    <td><span class="style1">*</span>Date(mm/dd/yyyy)</td>
    <td><input type="text" name="Dateformat"/></td>
    </tr>
    <tr>
    <td>Category</td>
    <td><select name="catagory" size="1">
    <option></option>
    <option>Business</option>
    <option>Education</option>
    <option>Entertainment</option>
    <option>Food</option>
    <option>Hobbies</option>
    <option>Personal</option>
    <option>Politics</option>
    <option>Sports</option>
    </select></td>
    </tr>
    <tr>
    <td>Enter your text here:</td>
    <td><textarea name="textarea" cols="45" rows="5"></textarea></td>
    </tr>
    <tr>
    <td><span class="style1">*</span>Upload Image <span class="style5">(.jpg
              or .gif)</span></td>
    <td><input type="file" name="uploadimage" /></td>
    </tr>
    <tr>
    <td></td>
    <td><input type="submit" value="save">
    <input type="reset" name="reset" value="Reset" /></td>
    </tr>
    </table>
    </form>
    </body>
    </html>

    Your javascript code contains a syntax error. That's why the function isn't being called. Take a look at this line in your code.
    if ((m>12 && m<100) || (m> = 100 && m<1000) || (m==0))Notice the space between > and =. Remove that space.
    m >= 100

  • Javascript generated validation error message not rendering properly.

    Hi guys. I am a web developer looking for some help with a Safari issue.
    I have a web form with client side validation. The page is built in asp.net and uses a validation summary to display the error messages in an unordered list. The validation is not the standard asp.net version, but a version they came up with at the company I work at.
    The validation produces some javascript in the page, which appears just before the closing </form> tag, which I understand can cause issues in Safari? However I cannot change the place it appears on the page because its part of a sort of CMS template.
    The validation text appears fine in other browsers, but in Safari it produces a white space. However if you highlight over the space, the text is revealed, and then stays on the page. Also if you scroll the page so that the space disappears off the top of the page, and then scroll back up again, the text is visible. Also if you click the submit button again the text is revealed.
    I have also found that if you use Safari in the Transparent Window mode, it all works fine.
    If anybody out there has any ideas what could be causeing the problem, I would be extremely grateful.
    Mac Mini Mac OS X (10.4.9) Safari 2.0.4

    Hi,
    no, there doesn't exist a client side JavaScript API for this. The message element is only rendered if there is a component error detected in the lifecycle. This means there is nothing you can hook into (e.g. using document.getElementById())
    Frank

  • Javascript SSN validator...

    Hi everyone,
    I am looking for a javascript which validates the format of SSN
    If i have to enter SSN in a text field
    1.It has to accept only numbers (no characters)
    2.It has to add the string '-' automatically when the users entering the SSN
    3.It has to validate whether users entered correct no of digits (9 digits)
    Does anyone encountered or implemented such kind of javascript validations for a SSN no?
    Please let me know if this is possible to do
    Thank you
    phani

    Hi everyone,
    I am looking for a javascript which validates the
    format of SSN
    f i have to enter SSN in a text field
    1.It has to accept only numbers (no characters)
    2.It has to add the string '-' automatically when
    the users entering the SSN
    3.It has to validate whether users entered correct no
    of digits (9 digits)
    Does anyone encountered or implemented such kind of
    javascript validations for a SSN no?
    Please let me know if this is possible to do
    Thank you
    phaniUsing google the following link(s) comes up:
    http://javascript.internet.com/forms/val-ssn.html
    http://www.yaldex.com/FSForms/ValidationSocialSecurityNumber.htm
    http://blog.techsaints.com/2007/06/03/javascript-social-security-number-validation/
    Thank you,
    Tony Miller
    Webster, TX

  • Invoke javascript on validation error?

    Is there any way to invoke some javascript when I get a form validation error?

    I'm having problems with dynamic menus. I was getting that "value is not valid" error because my menus don't identically match the arraylist I initially provide them with in the backing bean. So I decided to just get around it with javascript.
    Anyway I think I have found a solution using this as a guide:
    http://balusc.blogspot.com/2007/12/set-focus-in-jsf.html

  • JSON, Javascript, PHP and JQUERY

    Hi,
    In my earlier post, I decided to go with PHP and leave
    ASP.NET 3.5 for the time being. I now need your help in charting a
    way to learn PHP.
    I am a Web Designer and I have started using JQuery
    extensively in the websites, as I love JQuery and it makes the life
    so much easier. What I want to know from you all that :
    Q1) What is JSON and do I need to learn it if I am getting
    into PHP?
    Q2) Since, I am using JQuery, do I need to learn Javascript
    from bottom to top? Does it help to master Javascript thoroughly?
    Q3) What should be my learning path? Should I start with PHP
    or Javascript first?
    There are so many things to learn and very less time. Also,
    if you all can tell me some books (apart from David's :-)) ) which
    will help me in learning.
    Thanks to all.
    Gaurav

    gaurav_ch wrote:
    > Q1) What is JSON and do I need to learn it if I am
    getting into PHP?
    JSON is JavaScript Object Notation. It's a shorthand way of
    transmitting
    data. You don't need to know it for PHP, although PHP does
    have support
    for JSON>
    > Q2) Since, I am using JQuery, do I need to learn
    Javascript from bottom to
    > top? Does it help to master Javascript thoroughly?
    No, you don't need to learn JavaScript from bottom to top to
    use jQuery.
    However, a good understanding of JavaScript will improve your
    ability to
    use jQuery or any other JavaScript framework.
    > Q3) What should be my learning path? Should I start with
    PHP or Javascript
    > first?
    I would start with PHP first. PHP is a server-side language,
    so your
    content is delivered to all users. JavaScript is normally
    used on the
    client-side (within the browser), so the small percentage of
    people who
    browse with JavaScript disabled don't see content or effects
    delivered
    by JavaScript. It's also important to realize that search
    engines don't
    spider content that is generated by JavaScript.
    > Also, if you all can
    > tell me some books (apart from David's :-)) ) which will
    help me in learning.
    I find "Programming PHP" by Kevin Tatroe and Rasmus Lerdorf
    very useful.
    "Pro PHP Security" by Chris Snyder and Michael Southwell is
    also
    essential reading.
    For jQuery, "jQuery in Action" by Bear Bibeault and Yehuda
    Katz is
    excellent.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • External javascript for validation

    i have created a registeration form. and need to do validation for the form. but the problem now is that i need to create a external javascipt for valiation. and this scipt must be able to reuse on other form as well.
    can anyone please help me on that? teach me how to create one?

    To create an external JavaScript simply write the JavaScript in a text file and save the file with a .js extension.
    In the HTML reference the file with
    <Script Language="JavaScript" src="myFile.js"></Script>
    where "myFile.js" is the relative path and file name of your .js file.
    To reuse the same validation .js file in different pages you'll either have to :
    1: Pass the form elements being validated in as parameters to functions
    2: Make sure that the HTML form and all of the form elements have the same
    Here is a good link to working with JavaScript:
    http://developer.netscape.com/docs/manuals/js/client/jsguide/index.htm
    name or are in the same order in the DOM.

  • Call JavaApplet from HTML/Javascript/Php on the button click

    Hello guys!
    I have a JAR file, to establish telnet sessions. Everything is working with this simple piece of HTML code:
    <html>
    <body>
    <applet CODEBASE="."
    ARCHIVE="Telnet.jar"
    CODE="Telnet.Applet"
    WIDTH=500 HEIGHT=300>
    </applet>
    </body>
    </html>
    But there is something more. :)
    I wan't to make a network topology with MS Visio , click on the Router, Switch or on the Firewall icon , and just then run that Java applet.
    I can't find any good example how to achieve this. Maybe this is possible by running Java Applet from Javascript ? Etc. "onClickButton" ?
    Thank you for your time and your answers.
    Any help is highly appreciated!

    Dear programmers,
    could you take a look there, this is a real world example.
    login there with username: test12345 and password: test12345
    http://e-learning.nil.com/
    Then go there, and press "start lab"
    http://e-learning.nil.com/C1257448003E0C9B/ep?readform&pid=lab&code=PA8VVMC3MNT
    Click on the router icon, telnet application will show up.
    If not , go to profile-> devices access, choose " use java applet".
    How this is done without JNLP? Without downloading JNLP file? Java applet shows up like an application, and not in the new browser window?
    Thank you very much for your time!

  • How do I mix javascript with actionscript?

    I have an HTMLLoader object instance inside an .mxml class.
    I specifically want to call jquery functions from inside an .mxml or .as file and have the jquery execute on the content inside the HTMLLoader.
    here is some non-working code that will maybe explain more of what i want to do:
    [as]
    <fx:Script>
    <![CDATA[
    ldr = new HTMLLoader();
    //...load page and add to stage
    <script src="js/jquery-1.3.1.min.js" type="text/javascript" charset="utf-8"></script>
    $(ldr.window.document.getChildById("id")).performJQueryFunc{
         //stuff i want to do.
    ]]>
    </fx:Script>
    [/as]
    I don't know if this is even possible but I really hope I can do such a thing.

    Hi,
    I already answered this question, you can check this out here : http://forums.adobe.com/thread/712194?tstart=30

  • Urgent!! Process not invked after using javascript validation

    hi,
    I have created a javascript form validation and finally (if its passes the validation) I am setting the :REQUEST as doSubmit('GO');
    I am calling a conditional process with condition as request = expression1
    with expression 1 as GO.
    The javascript is as follows
    function message_name_not_null(){
    if(document.getElementById('P14_MESSAGE_NAME').value.length==0)
    alert("Message Name is Mandatory!!");
    return;
    else if(document.getElementById('P14_MESSAGE_TEXT').value.length==0)
    alert("Message Text is Mandatory!!");
    return;
    else
    doSubmit('GO');
    My problem is my process is not getting called in button click(I have called the javascript from this button as javascript:message_name_not_null(); in Optional URL Redirect section)
    I have specified the :REQUEST value in the branches also.
    Any sort of help please..
    Thanks in Advance
    Kaushik

    Hi Kaushik,
    this thread should help you:
    Validation with javascript
    greetings,
    Jochen

Maybe you are looking for

  • SRM one client Contract Management

    Dear Experts, Can we create contracts in SRM one client and distribute them to our ECC system. Because I seached on service marketplace and no where its mentioned that Contract mangement is possible in SRM one client. Sourcing is possible that I have

  • Finding Missing Programmes & Reporting Missing Links

    Sometimes a programme that appears to be missing can be found in a different way. As an example: Searching on Murdoch Mysteries brings up most but not all available episodes and is a useful way to work through the series. Searching on the title of sp

  • ICloud deleted my events

    I turned on the switch for iCloud events and my events were deleted. What happened? I do have the dash on my pc but I don't have outlook.  HELP!HI

  • Can make iBook without previewing in iPad

    hi, can I make an iBook by using iBook Author without having an iPad only on iMac, if it is possible let me know how I have to make an iBook but I don't have iPad to preview it and I am having problem, is there any other way please tell me. thanks

  • Removing index.html from URL bar

    Hi guys, I have uploaded my site to a URL. But i can only see my website if i add /index.html to the URL. How do i get it so that if i go to www.thisismysite.com i can see it, rather than having to type www.thisismysite.com/index.html? Cheers, Ian