Can i change my contain in file at run time

hello everybody,
i am beginner and i am trying to write the online test,
i display users to login and then display first question on question.html,
now my question is can i change question and send next question at run time on same question.html
please reply me,
waiting for answer

hello,
but how i open that html files and change the contain within control (say textbox) as i change the question in text box.
please reply me

Similar Messages

  • How can I change the insert SWF File, I need to add a few things and make it better?

    How can I change the insert SWF File, I need to add a few things and make it better? Is there an option inside of the dreamweaver menu that I am not looking at. It would make it easier on me if I changed some things around and didn't have to do it all myself each time I used it. Just incase you was needing to remember what swf flash was, It is not a swf video either.
      <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="640" height="480">
        <param name="movie" value="Sonic Kaboom.swf">
        <param name="quality" value="high">
        <param name="wmode" value="opaque">
        <param name="swfversion" value="9.0.115.0">
        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
        <param name="expressinstall" value="../Scripts/expressInstall.swf">
        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="Sonic Kaboom.swf" width="640" height="480">
          <!--<![endif]-->
          <param name="quality" value="high">
          <param name="wmode" value="opaque">
          <param name="swfversion" value="9.0.115.0">
          <param name="expressinstall" value="../Scripts/expressInstall.swf">
          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
          <div>
            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
          </div>
          <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    </div>

    If I understand correctly, Sonic Kaboom.swf needs to be edited in a separate Flash authoring program and then reinserted into your HTML document. 
    As Murray said, Flash is dead.  Nobody uses it anymore.   We use HTML5, CSS3 and JavaScript animations which have universal support from Smartphones, Tablets and other web devices that can't support Flash.   Look at Edge Animate.
    HTML animation | Download free Adobe Edge Animate CC trial
    Nancy O.

  • Can I use the new Time Capsule to backup my mid 2010 Macbook Pro? Also can I want to free up my hard disk, can I save my photos and files on the time capsule and later access through wifi?

    Can I use the new Time Capsule to backup my mid 2010 Macbook Pro? Also can I want to free up my hard disk, can I save my photos and files on the time capsule and later access through wifi?

    Can I use the new Time Capsule to backup my mid 2010 Macbook Pro?
    Yes, if you are asking about using Time Machine to backup the Mac.
    Also can I want to free up my hard disk, can I save my photos and files on the time capsule and later access through wifi?
    You are not thinking of deleting the photos and files on your Mac, are you?  If you do this, you will have no backups for those files.
    Another concern is that Time Machine backs up the changes on your Mac. At some point, Time Machine will automatically delete the photos and files from the Time Capsule.....you just don't know when this might occur.
    In other words, only delete files from your Mac that you can afford to lose.

  • HT3775 I can't open MPEG 4 -movie files with Quick time or VLC

    I can't open MPEG 4 -movie files with Quick time or VLC

    VideoLAN - Download official VLC media player for Mac OS X

  • How can I change the Microsoft Office Click to Run from drive letter 'Q' to something else?

    How can I change the Microsoft Office Click to Run from drive letter 'Q' to something else?
    We have a legacy app that used drive letter 'Q' already, now the newer machines are coming in with 'Q' preassigned to Microsoft Office Click to Run, and it is causing problems.  There has to be a way to change the drive letter assignment to some
    other letter besides 'Q' 

    Hi,
    Office that is delivered by Click-to-Run is installed on the Q drive, this cannot be changed.
    To work around this problem, uninstall the Click-to-Run version of Office and then install with the traditional MSI-based installation.
    To switch to using an MSI-based Office edition, you can learn something useful from this link below:
    http://office.microsoft.com/en-us/excel-help/click-to-run-switch-to-using-an-msi-based-office-edition-HA101850538.aspx
    Regards,
    Melon Chen
    TechNet Community Support

  • Modifying property file at run time

    Hi all..
    I have been using properties file for handling few configurations in my project.
    whenever i need a change in the file, i had to change it in corresponding file, create a jar file and then introspect it into project and then publish the project.
    Is there any other way of achieving it.... can we modify the property file at run time just like we do for JSP pages...
    Or any other better way of doing this.. pls suggest..
    (am using 10g OBPM)
    Have a nice time...
    Regds,
    Viswanath

    Sharma,
    write a java class that reads a property file from the external path. make the jar file non-versionable in case you need to update that later. if you are on J2ee container all you need to do it drop the file @ domain root and u shd be good to go.
    sample code I am doing this for log4j.properties and application propertied.
    public class BPMLoggerUtil {
         // Initializing the default Logger //
         private static Logger logger = null;
         private static final String DEFAULT_PATH = "resources/log4j.properties";
         private static HashMap map = new HashMap();
         * This is the init method
         * @param propertyPath
         public static void init(String propertyPath){
              try {
                   if((logger = (Logger) map.get(propertyPath)) == null){
                        Properties properties = new Properties();
                        properties.load(LoggerUtil.class.getClassLoader().getResourceAsStream(propertyPath));
                        PropertyConfigurator.configure(properties);
                        logger = Logger.getLogger(PropertiesHelper.getProperty("resources.test", "AppName"));
                        map.put(propertyPath, logger);
              } catch(Exception ex) {
                   ex.printStackTrace();
         }

  • How to get info from a .class file at run time? thanks for help

    I need to get methods and properties (variables) from a .class file at run time.
    as u know, javap.exe can do that in an independent way. but i need to get info at run time once the .class or packeges have been changed, javap is not suitable in the case.
    i try to read data directly from .class file but it's hard to know the file format.
    e.g. a class looks like (java file):
    class MyClass extends Frame
    int i0;
    String s0;
    public String getName()
    if the file is compiled to .class file, how to get properties (variables: i0,s0) and methods String getName() from the .class file by an applicaton at run time?
    Doclet is not suitable for speed reason, it is too slow to get right info in right format.
    Thanks for any help, please write a little bit more in detail if you know.

    Use the Java Reflection API. Have a look at the Reflection section of the Java Tutorial located at http://java.sun.com/docs/books/tutorial/reflect/index.html

  • Convert standard video files in to flv file at run time

    Hello All
    How can we convert standard video files in to flv file at run
    time like
    you tube and
    Google Video is there any
    script or tool to do this. This is urgent.
    I have one project in this project client requiring function
    like whatever standard video file he upload, it will be play in
    .flv formate
    Any help is appreciated
    Naved Ansari

    I think you need the Macromedia Flash Media Server to be able
    to do what you are asking. Flash 8 can with a Flash Video Encoder
    but it does not do it on the fly. There maybe other 3rd party
    servers that you can sign-up that allow you do this but if you are
    looking for your own solution you will need the FMS 2.0.
    Tim

  • Set value TextTemplatingFileGenerator to custom tool property of a t4 template file at run time(programmatically) in an MVC Project

    In Solution Explorer we can set the Custom Tool property for a t4 Template file in the Properties window. But can anybody help me doing the same at run time?
    I want to assign the value TextTemplatingFileGenerator programmatically to the Custom Tool Property.
    Thanks in advance...

    Hi suraya,
    Since the issue regards MVC and website deployment. I suggestion you post the question in the ASP.NET forums at
    http://forums.asp.net/. It is appropriate and more experts will assist you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Opening Another Flash File during Run Time

    I know, this is too easy. How do I open a Flash.exe file
    during run time? I know the code below is wrong but some insert the
    correction?
    open_btn.onRelease = function () {
    play("C:\Documents and Settings\GameOfficeFlow.exe");}
    Forever in your debt,
    Mike

    play() is a timeline command.
    I don't think you can have Flash load/play an exe file, but
    wait awhile and see if someone else knows better on that one. You
    can have it load/play an swf version of a Flash file though.

  • How create bath file in run time in java

    Hi all
    i run one bath file by using process class but i create bath file in run time in java .please help me with code.

    Dynamically Writing a batch file in Java is exactly the same as writing to a simple text file.... you just give it the file extension ".bat".
    If you can't write to a simple text file yet, you should probably buy a Java book and start working through it.
    regards,
    Owen

  • How can I change an Adobe .pdf file to a .jpeg file?

    I have a .pdf file and the program I need to upload the file to only accepts .jpeg files.  Can I change the .pdf to a .jpeg?

    Not using Reader alone no.
    You could take a snapshot and paste it into an image application, you could open it in Photoshop and save as a .jpg or you could use save as .jpg from Acrobat.

  • How can client change link to external file in in-browser editing

    Hi, I made a website for a client. It has links to pdf files. Obviously they can change the text, but how can they change the link to another pdf file. Thank you.

    Sorry, this is not supported currently. Please vote for this idea: http://forums.adobe.com/message/5552091#5552091
    This helps the product team prioritize.
    Thanks,
    Abhishek

  • How can I change the speed the file is played at on itunes?

    My files are all listed at 128 k bits/second. However I require them to be 256 k bits/second. How can I change this? Do I have to change conversion settings or anything like that?
    windows   Windows 2000  

    I require them to be 256 k bits/second.
    Is this something you want or sonmething you think is required somewhere?
    Do you know why you want it at 256k?
    -to submit music to the itunes store
    to submit my music onto itunes
    Do you mean to add music to your iTunes on your computer?
    Or are you trying to add something the iTunes store?
    -to add music to the itunes store
    apparently my music needs to be 256 k /s
    This is incorrect in either case.
    -from tunecore faq- "256 kbps is the MINIMUM for AACs uploaded to TuneCore"
    It will not accept files at 128 k bits.
    What won't accept the files?
    -Tunecore website

  • How can I change RAW and Tiff files to jpeg in Aperture 3

    How can I change RAW & Tiff to jpeg in Aperture3

    The purpose of Aperture is storing and managing image files including RAW and TIFF, generally users don't change the image format once it is in the library, there is no need.
    If you want a jpeg version of an image for use elsewhere, you simply export it from Aperture, there are numerous ways of getting images out of APerture depending on what you plan to do with them, e.g. File>Export>Version gives you a lot of choices as to the format and quality of your exported file.

Maybe you are looking for

  • How can I get a list of database names from environment

    Hi, How can I get a list of database names from environment. I had found a method in JE API Docs named Environment.getDatabaseNames(), and i couldn't found the same method in Berkeley DB. I use java interface, is it supported? Thanks.

  • Where did the Quicktime streaming server go??

    It looks as if the Quicktime streaming server is gone for good - apparently it is not part of the Lion server install, and it can't be found on the Apple web site either. There is a page for it, but it doesn't actually provide any useful information.

  • Disable automatic Bluetooth reconnect?

    Hello all, After upgrading to Mavericks, I've noticed a slightly annoying behavior that was not present in Mountain Lion: my computers automatically connect to nearby paired Bluetooth devices, namely my Logitech Wireless Speaker Adapter. Because I us

  • Opening jpegs in Camera Raw 4.1?

    I just received some jpegs from Getty and I decided to see what they looked like when I opened them using ACR as opposed to just opening them in PSCS3. What I found was that with the default settings the files from ACR had less saturation? The jpegs

  • Help I forgot my first Apple ID.

         Please help me. I restores my frozen iPad on the computer and now it is aasking fo an activation ID. In the text it says k^^^^^@k^^^^^.com. I wouln't let me skip this if I don;t get past this I woulnt be able to use my iPad at all. I tried reset