Labels

Learn the powerful enterprise adaptable database:

Getting Started With ADABAS & Natural

Wednesday, July 31, 2013

A simple template for publishing mobile comics quickly

Using a combination of Dreamweaver's generated mobile page and PhotoSwipe.com sample file, I have created a template file that a mobile comic artist can load his artwork and publish on mobile platform easily.

1) Download the template file here.

2) Replace the sample image files with your comic page image files.
a) Unzip the template file.
b) Delete the sample image file. Replace with your image files.
c) Zip back the file.

3) Log into build.phonegap.com (you have to sign in first).

In the past, I have already created an app called Hello World.

This time, I just want to replace it with the mobile comic project. 

4) Click the button "update code".
Select the Zip file in Step 2.
Click Upload.


5) Build.Phonegap.com may take some time to process the file.


6) Eventually, the process ended up with errors for iOS and BlackBerry. This is because these platforms require license. As for now, pay attention to the Android's apk.


7) Click the apk button to download.

8) Copy the file to your android and install. It's done.





Sunday, July 21, 2013

ASP .NET 2.0: myproject101


This tutorial uses UltiDev WebServer Pro for running ASP .NET 2.0 applications. To learn more on setup steps, follow this tutorial, http://setup-steps.blogspot.com/2013/07/aspnet-development-environment.html.



1) Create the physical directory for myproject101, C:\Z\aspnet2\sites\myproject101\


2) Using Notepad++, create aspx file C:\Z\aspnet2\sites\myproject101\index.aspx containing the following code:
<h1>Hello World</h1>



3) Create Virtual Host for myproject101
a) Run UltiDev/Web Server Pro/Interactive Dev & Test Server/UWS for .NET 1.x, 2.0, 3.x


b) The Control Panel pops up.
Enter the following details:


c) Click Exec Control button.


d) New links appear beside the button.


e) Click on the link http://localhost:80/myproject101/
A webpage appears on the screen.
Notice that the address box showing the URL similar to the link in the previous step.



4) Create a new aspx file, C:\Z\aspnet2\sites\myproject101\testvb.aspx 
a) Enter the following codes:


b) Browse URL http://localhost:80/myproject101/testvb.aspx



5) Create a new aspx file, C:\Z\aspnet2\sites\myproject101\testcs.aspx
a) Enter the following codes:


b) Browse the URL http://localhost:80/myproject101/testcs.aspx


6) Create a new aspx file, C:\Z\aspnet2\sites\myproject101\formvb.aspx
a) Enter the following codes:


b) Browse the URL http://localhost:80/myproject101/formvb.aspx


7) Create a new aspx file, C:\Z\aspnet2\sites\myproject101\formcs.aspx
a) Enter the following codes:


b) Browse the URL http://localhost:80/myproject101/formcs.aspx