REVIEWS ALL PRODUCT JVZOO

12/29/2019

set position javafx

Rate this posting:

package uidagdrop;
import javafx.application.Application;import javafx.event.ActionEvent;import javafx.event.EventHandler;import javafx.scene.Scene;import javafx.scene.control.Button;import javafx.scene.layout.Pane;import javafx.stage.Stage;
public class positionjava extends Application {

    public static void main(String[] args) {
        launch(args);    }
    @Override    public void start(Stage primaryStage) throws Exception {

   /* }    @Override    public void start(Stage primaryStage) {*/        primaryStage.setTitle("Hello World!");        Button btn = new Button();        btn.setText("'Hello World'");        btn.setOnAction(new EventHandler<ActionEvent>() {

            @Override            public void handle(ActionEvent event) {
                System.out.println("Hello World!");            }
        });
        Pane root = new Pane();        btn.setLayoutX(0);        btn.setLayoutY(100);////        root.getChildren().add(btn);        primaryStage.setScene(new Scene(root, 300, 250));        primaryStage.show();    }


}

get position javafx

Rate this posting:

package uidagdrop;
import javafx.application.Application;        import static javafx.application.Application.launch;        import javafx.event.*;        import javafx.scene.*;        import javafx.scene.control.*;        import javafx.scene.input.MouseEvent;        import javafx.scene.layout.VBox;        import javafx.stage.*;
public class getposition extends Application {
    private static final String OUTSIDE_TEXT = "Outside Label";
    public static void main(String[] args) { launch(args); }

    @Override public void start(final Stage stage) {
        final Label reporter = new Label(OUTSIDE_TEXT);        Label monitored = createMonitoredLabel(reporter);
        VBox layout = new VBox(10);        layout.setStyle("-fx-background-color: cornsilk; -fx-padding: 10px;");        layout.getChildren().setAll(
                monitored,                reporter
        );        layout.setPrefWidth(500);
        stage.setScene(
                new Scene(layout)
        );
        stage.show();    }

    private Label createMonitoredLabel(final Label reporter) {
        final Label monitored = new Label("Mouse Location Monitor");
        monitored.setStyle("-fx-background-color: forestgreen; -fx-text-fill: white; -fx-font-size: 20px;");
        monitored.setOnMouseMoved(new EventHandler<MouseEvent>() {
            @Override public void handle(MouseEvent event) {
                String msg =
                        "(x: "       + event.getX()      + ", y: "       + event.getY()       + ") -- " +
                                "(sceneX: "  + event.getSceneX() + ", sceneY: "  + event.getSceneY()  + ") -- " +
                                "(screenX: " + event.getScreenX()+ ", screenY: " + event.getScreenY() + ")";
                reporter.setText(msg);            }
        });
        monitored.setOnMouseExited(new EventHandler<MouseEvent>() {
            @Override public void handle(MouseEvent event) {
                reporter.setText(OUTSIDE_TEXT);            }
        });
        return monitored;    }
}

dropdrag item ListView

Rate this posting:

package uidagdrop;
import javafx.application.Application;import javafx.beans.property.ObjectProperty;import javafx.beans.property.SimpleObjectProperty;import javafx.scene.Scene;import javafx.scene.control.ListCell;import javafx.scene.control.ListView;import javafx.scene.input.ClipboardContent;import javafx.scene.input.Dragboard;import javafx.scene.input.TransferMode;import javafx.scene.layout.BorderPane;import javafx.stage.Stage;
public class demo extends Application {

    private int counter = 0 ;
    private final ObjectProperty<ListCell<String>> dragSource = new SimpleObjectProperty<>();
    @Override    public void start(Stage primaryStage) {
        populateStage(primaryStage);        primaryStage.show();
        Stage anotherStage = new Stage();        populateStage(anotherStage);        anotherStage.setX(primaryStage.getX() + 300);        anotherStage.show();    }

    private void populateStage(Stage stage) {

        ListView<String> listView = new ListView<>();
        // thêm list view/ showlistview        for (int i=0; i<5; i++ ) {
            listView.getItems().add("Item "+(++counter));        }


        listView.setCellFactory(lv -> {
            //update item in listview            ListCell<String> cell = new ListCell<String>(){
                @Override                public void updateItem(String item , boolean empty) {
                    super.updateItem(item, empty);                    setText(item);                }
            };
            //set even ondragdetected            cell.setOnDragDetected(event -> {
                if (! cell.isEmpty()) {
                    //Dragboard db = cell.startDragAndDrop(TransferMode.MOVE);                    Dragboard db = cell.startDragAndDrop(TransferMode.MOVE);                    ClipboardContent cc = new ClipboardContent();                    cc.putString(cell.getItem());                    db.setContent(cc);                    dragSource.set(cell);                }
            });
            cell.setOnDragOver(event -> {
                Dragboard db = event.getDragboard();                if (db.hasString()) {
                    event.acceptTransferModes(TransferMode.MOVE);                }
            });
            //cell.setOnDragDone(event -> listView.getItems().remove(cell.getItem()));
            cell.setOnDragDropped(event -> {
                Dragboard db = event.getDragboard();                if (db.hasString() && dragSource.get() != null) {
                    // in this example you could just do                    // listView.getItems().add(db.getString());                    // but more generally:                    double x = event.getX();                    double y = event.getY();                    System.out.println("position:"+x+","+y);                    double x1 = event.getSceneX();                    double y2 = event.getSceneY();                    System.out.println("scense:"+x1+","+y2);
                    ListCell<String> dragSourceCell = dragSource.get();                    listView.getItems().add(dragSourceCell.getItem());                    event.setDropCompleted(true);                    dragSource.set(null);                } else {
                    event.setDropCompleted(false);                }
            });
            return cell ;        });
        BorderPane root = new BorderPane(listView);        Scene scene = new Scene(root, 250, 450);        stage.setScene(scene);
    }

    public static void main(String[] args) {
        launch(args);    }
}

12/19/2019

Rate this posting:

https://gist.github.com/abhinayagarwal/9735744

System.out.println(ButtonCell.this.getIndex());


or


Supplier supplier = getTableView().getItems().get(getIndex());

12/17/2019

Aclass

Rate this posting:

package testtableview;
import javafx.scene.control.Button;import javafx.scene.control.ComboBox;import javafx.scene.control.TextField;
public class AClass {
    private String id;    private ComboBox<String> comboBox;    private String object;
    public AClass(String id, ComboBox<String> comboBox, String object) {
        this.id = id;        this.comboBox = comboBox;        this.object = object;    }

    public String getId() {
        return id;    }

    public void setId(String id) {
        this.id = id;    }

    public ComboBox<String> getComboBox() {
        return comboBox;    }

    public void setComboBox(ComboBox<String> comboBox) {
        this.comboBox = comboBox;    }

    public String getObject() {
        return object;    }

    public void setObject(String object) {
        this.object = object;    }
}

tableviewCombobox

Rate this posting:

package testtableview;
import javafx.application.Application;import javafx.collections.FXCollections;import javafx.collections.ObservableList;import javafx.geometry.Insets;import javafx.scene.Scene;import javafx.scene.control.*;import javafx.scene.control.cell.PropertyValueFactory;import javafx.scene.layout.StackPane;import javafx.stage.Stage;
public class TableViewMain extends Application {
    @Override    public void start(Stage primaryStage) {
        TableView<AClass> table = new TableView<AClass>();        TableColumn<AClass, String> idCol  = new TableColumn<AClass, String>("ID");        TableColumn<AClass, ComboBox> optionCol = new TableColumn<AClass, ComboBox>("OPTION");        TableColumn<AClass, Object> valuesCol = new TableColumn<AClass, Object>("VALUES");

        table.setEditable(true);
        //        idCol.setCellValueFactory(new PropertyValueFactory<>("id"));        optionCol.setCellValueFactory(new PropertyValueFactory<>("comboBox"));        valuesCol.setCellValueFactory(new PropertyValueFactory<>("object"));
        table.setItems(initLoad());        table.getColumns().addAll(idCol,optionCol, valuesCol);
        StackPane root = new StackPane();        root.setPadding(new Insets(5));        root.getChildren().add(table);
        primaryStage.setTitle("TableView (o7planning.org)");
        Scene scene = new Scene(root, 450, 300);        primaryStage.setScene(scene);        primaryStage.show();    }

    public ObservableList<AClass>  initLoad(){
        ObservableList<AClass> dataTable = FXCollections.observableArrayList();        for(int i = 0; i< 7 ; i++){
            ObservableList<String> listItem = FXCollections.observableArrayList("a","b","c");            ComboBox<String> comboBox = new ComboBox<String>();            comboBox.setItems(listItem);            comboBox.getSelectionModel().select(0);            dataTable.add(new AClass(""+i,comboBox,"a"));        }
        return dataTable;    }

    public static void main(String[] args) {
        launch(args);    }

}

12/09/2019

Paging withDdataTable in vbnet

Rate this posting:

//copy dataTale
Dim firstFiveRows As DataTable = dtb.AsEnumerable().Skip(page-1).Take(numRecordPage).CopyToDataTable()

//show message
MsgBox("The file is already closed", MsgBoxStyle.Information, "Murasalat")

fixed header scroll gridview

Rate this posting:

 <div style = " background-color:aqua">
        <div style="margin: auto; margin-top: 100px; width: 617px; background-color:forestgreen ">
            <div style="height: 30px; width: 600px; ">
                <table border="1" id="tblHeader"
                    style="                        font-family: Arial;
                        font-size: 10pt;
                        width: 600px;
                        color: white;
                        background-color: blue;
                        border-collapse: collapse;
                        height: 100%;">
                    <tr>
                        <td style="width: 150px; text-align: center">CustomerID</td>
                        <td style="width: 150px; text-align: center">City</td>
                        <td style="width: 150px; text-align: center">Country</td>
                    </tr>
                </table>
            </div>

            <div style="height: 200px; width: 617px; overflow: auto;">
                <asp:GridView ID="GridView1" runat="server"
                    AutoGenerateColumns="false" Font-Names="Arial" ShowHeader="false"
                    Font-Size="11pt" AlternatingRowStyle-BackColor="#C2D69B" Width="100%">
                    <Columns>
                        <asp:BoundField ItemStyle-Width="150px" DataField="CustomerId" />
                        <asp:BoundField ItemStyle-Width="150px" DataField="Name" />
                        <asp:BoundField ItemStyle-Width="150px" DataField="Country" />
                    </Columns>
                </asp:GridView>
            </div>
        </div>
    </div>

12/08/2019

vbnet_sqlserve

Rate this posting:

Imports System.Data
Imports System.Text
Imports System.Configuration
Imports System.Data.SqlClient

Public Class About
    Inherits Page

    Private Connection As SqlConnection
    Private myCmd As SqlCommand
    Private myReader As SqlDataReader
    Private results As String

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
        If Not Me.IsPostBack Then
            'Populating a DataTable from database.
            Dim dt As DataTable = Me.GetData()

            'Building an HTML string.
            Dim html As New StringBuilder()

            'Table start.
            html.Append("<table border = '1'>")

            'Building the Header row.
            html.Append("<tr>")
            For Each column As DataColumn In dt.Columns
                html.Append("<th>")
                html.Append(column.ColumnName)
                html.Append("</th>")
            Next
            html.Append("</tr>")

            'Building the Data rows.
            For Each row As DataRow In dt.Rows
                html.Append("<tr>")
                For Each column As DataColumn In dt.Columns
                    html.Append("<td>")
                    html.Append(row(column.ColumnName))
                    html.Append("</td>")
                Next
                html.Append("</tr>")
            Next

            'Table end.
            html.Append("</table>")

            'Append the HTML string to Placeholder.
            PlaceHolder1.Controls.Add(New Literal() With {
               .Text = html.ToString()
             })
        End If
    End Sub

    Protected Sub Login1_Authenticate(sender As Object, e As AuthenticateEventArgs) Handles Login1.Authenticate

    End Sub


    Private Function GetData() As DataTable

        Dim connetionString As String
        'connetionString = "Server=localhost;Initial Catalog=acernis;User ID=root;Password=password"
        connetionString = "server=DESKTOP-MS7EE87\LETIEN; database=constr;trusted_connection=true"
        Dim strSql As String = "SELECT * FROM Customers"
        Dim dtb As New DataTable
        Using cnn As New SqlConnection(connetionString)
            cnn.Open()
            Using dad As New SqlDataAdapter(strSql, cnn)
                dad.Fill(dtb)
            End Using
            cnn.Close()
        End Using
        Return dtb
    End Function
End Class

1/14/2018

web.xml

Rate this posting:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">

<servlet>
<servlet-name>CheckLogin</servlet-name>
<servlet-class>letien.acf.CheckLogin</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>CheckLogin</servlet-name>
<url-pattern>/CheckLogin</url-pattern>
</servlet-mapping>



</web-app>




tài liệu hướng dẫn :http://www.coreservlets.com/javascript-jquery-tutorial/#getting-started
QT*:https://o7planning.org/vi/10285/tao-mot-ung-dung-java-web-don-gian-su-dung-servlet-jsp-va-jdbc

CheckLogin

Rate this posting:

package letien.acf;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class CheckLogin
 */
/**@WebServlet("/CheckLogin")**/
public class CheckLogin extends HttpServlet {
private static final long serialVersionUID = 1L;
     
    /**
     * @see HttpServlet#HttpServlet()
     */
    public CheckLogin() {
        super();
        // TODO Auto-generated constructor stub
    }

/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String us = request.getParameter("user");
String pa = request.getParameter("pass");


// if ((us == "letien") && (pa == "Abc"))
{
PrintWriter write = response.getWriter();
write.println("thanh cong");
}
}

/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String us = request.getParameter("user");
String pa = request.getParameter("pass");

PrintWriter write = response.getWriter();

if (us.equals("letien")&&pa.equals("Abc"))
{
//RequestDispatcher dispatcher = request.getRequestDispatcher("XacNhan.jsp");
response.sendRedirect("XacNhan.jsp");
//write.println("ok");
}
else
write.println("Username or Password is incorrect");

}



}

Tài liệu hướng dẫn : http://www.coreservlets.com/javascript-jquery-tutorial/#getting-started


XacNhan

Rate this posting:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>


<script type="text/javascript">

function validateForm() {

var ten = document.myForm2.name.value;
if (ten == "") {
alert("The Name must be filled out");
return false;
}

var ck = document.getElementById("male");
var tt = document.getElementById("female");
if ((ck.checked == false) && (tt.checked == false)) {
alert("You must select a gender");
return false;
}

var nm = document.myForm2.date.value;
if (nm == "") {
alert("The Date of birth must be filled out");
return false;
}

var email = document.myForm2.email.value;
var aCong = email.indexOf("@");
var dauCham = email.lastIndexOf(".");
if (email == "") {
alert("The Email must be filled out");
return false;
} else if ((aCong < 1) || (dauCham < aCong + 2)
|| (dauCham + 2 > email.length)) {
alert("The Email Address you entered does not appear to be valid");
return false;
}

var dienThoai = document.myForm2.phone.value;
var kiemTraDT = isNaN(dienThoai);
if (dienThoai == "") {
alert("The Phone must be filled out");
return false;
}
if (kiemTraDT == true) {
alert("phone number must be numeric");
return false;
}

var adr = document.myForm.address.value;
if (adr == "") {
alert("The Address must be filled out");
return false;
}
return true;
}
</script><br />


<form action="#" method="post" name="myForm2"
onsubmit="return validateForm()">

<table bgcolor="#DDDDDD" id="formdangky" style="width: 700" align="center">
<tbody>

<tr>
<td >Name:</td>
<td><input style="width: 400" name="name" type="text" /></td>
</tr>

<tr>
<td>Gender:</td>
<td><input id="male" name="Gender" type="radio" value="Male" />
Male <input id="female" name="Gender" type="radio" value="Female" />
Female</td>
</tr>

<tr>
<td >Day of Birth:</td>
<td><input style="width: 400" id="date" name="date" type="text" /></td>
</tr>


<tr>
<td >Email:</td>
<td><input style="width: 400" name="email" type="text" /></td>
</tr>

<tr>
<td >Phone:</td>
<td><input style="width: 400" maxlength="11/" name="phone" type="text" /></td>
</tr>

<tr>
<td>Address:</td>
<td><input style="width: 400" name="address" type="text" /></td>
</tr>


<tr >
<td colspan="2" align="center"><input name="ADD" type="submit" value="Add" />
<input name="REMOVE" type="reset" value="Remove" /></td>
</tr>

</tbody>
</table>
</form>

</body>
</html>

form_login

Rate this posting:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>

<script type="text/javascript">
function validateForm() {
var ten = document.myForm.user.value;
if (ten == "") {
alert("User must be filled out");
return false;
}
var ps = document.myForm.pass.value;
if (ps == "") {
alert("Password must be filled out");
return false;
}
return true;
}
</script>

</head>
<body>
<form name="myForm" style="text-align: center" action="CheckLogin" method="post"
onsubmit="return validateForm()">
<table width="150" height="100" align="center" cellpadding="5" border="2">
<tr>
<td colspan="2" align="center"><b>DANG NHAP</b></td>
</tr>
<tr>
<td width="50">User: </td>
<td><input type="text" name="user" /></td>
</tr>
<tr>
<td width="50">Pass: </td>
<td><input type="password" name="pass" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="OK" />
<input type="reset" value="RESET" /></td>
</tr>
</table>
</form>
</body>
</html>

1/11/2018

tao danh sách và lưu vào danh sách

Rate this posting:

<html>
<body>

<script type="text/javascript">

// JavaScript Document
function validateForm() {

//Tên phải được điền
var ten = document.forms["myForm"]["ten"].value;
if (ten == "") {
alert("Tên không được để trống");
return false;
}


//chon gioi tính

var ck = document.getElementById("male");
var tt = document.getElementById("female");
if ((ck.checked == false) && (tt.checked == false)) {
alert("Bạn phải chọn giới tính");
return false;
}



//Chọn ngày thang nam sinh khong duoc de trong
var nm = document.forms["myForm"]["date"].value;
if (nm == "") {
alert("Ngày không được để trống");
return false;
}


//Email phải được điền chính xác
var email = document.forms["myForm"]["email"].value;
var aCong=email.indexOf("@");
var dauCham = email.lastIndexOf(".");
if (email == "") {
alert("Email không được để trống");
return false;
}
else if ((aCong<1) || (dauCham<aCong+2) || (dauCham+2>email.length)) {
alert("Email bạn điền không chính xác");
return false;
}


//Nhập số điện thoại
var dienThoai = document.forms["myForm"]["dienThoai"].value;
var kiemTraDT = isNaN(dienThoai);
if (dienThoai == "") {
alert("Điện thoại không được để trống");
return false;
}
if (kiemTraDT == true) {
alert("Điện thoại phải để ở định dạng số");
return false;
}
//Nhập số lượng muốn mua
var adr= document.forms["myForm"]["address"].value;

if (adr == "") {
alert("Địa chỉ không được để trống");
return false;
}
return false;
}

function add_DanhSach() {
var kt = validateForm();
if(kt==true)
{
var t=document.forms["myForm"]["ten"].value;
var ck = document.getElementById("male");
if (ck.checked == true) {
var g = "male";
}
else
var g="female";

var d=document.forms["myForm"]["date"].value;
var e = document.forms["myForm"]["email"].value;
var p = document.forms["myForm"]["dienThoai"].value;
var a= document.forms["myForm"]["address"].value;

var ob ={
name:n,
gender:g,
date:d,
email:e,
phone:p,
address:a
};


// tạo mang đôi tượng rồi thêm các ob;
// tạo thành các danh sách
}



</script><br />


<form action="#" method="post" name="myForm" onsubmit="return validateForm()">




<table bgcolor="#DDDDDD" id="formdangky" style="width: 450px";>
<tbody>

<tr>
<td class="tenhang">Name:</td>
<td><input name="ten" type="text" /></td>
</tr>

<tr>
<td class="tenhang">Gender:</td>
<td><input id="male" name="male" type="radio" value="Male" /> Male
<input id="female" name="felmale" type="radio" value="Female" /> Female
</td>
</tr>

<tr>
<td class="tenhang">Day of Birth:</td>
<td><input id="date" name="date" type="text" /></td>
</tr>


<tr>
<td class="tenhang">Email:</td>
<td><input name="email" type="text" /></td>
</tr>
<tr>
<td class="tenhang">Phone:</td>
<td><input maxlength="11/" name="dienThoai" type="text" /></td>
</tr>
<tr>
<td class="tenhang">Address:</td>
<td><input name="address" type="text" /></td>
</tr>


<tr>
<td><input name="ADD" type="submit" value="Add" /></td>
<td><input name="REMOVE" type="reset" value="Remove" /></td>

</tr>

</tbody></table>
</form>

</body>
</html>

formacf

Rate this posting:

<html>
<body>

<script type="text/javascript">

// JavaScript Document
function validateForm() {
//Họ phải được điền
var ho = document.forms["myForm"]["ho"].value;
if (ho == "") {
alert("Họ không được để trống");
return false;
}
//Tên phải được điền
var ten = document.forms["myForm"]["ten"].value;
if (ten == "") {
alert("Tên không được để trống");
return false;
}
//Email phải được điền chính xác
var email = document.forms["myForm"]["email"].value;
var aCong=email.indexOf("@");
var dauCham = email.lastIndexOf(".");
if (email == "") {
alert("Email không được để trống");
return false;
}
else if ((aCong<1) || (dauCham<aCong+2) || (dauCham+2>email.length)) {
alert("Email bạn điền không chính xác");
return false;
}
//Nhập số điện thoại
var dienThoai = document.forms["myForm"]["dienThoai"].value;
var kiemTraDT = isNaN(dienThoai);
if (dienThoai == "") {
alert("Điện thoại không được để trống");
return false;
}
if (kiemTraDT == true) {
alert("Điện thoại phải để ở định dạng số");
return false;
}
//Nhập số lượng muốn mua
var soLuong = document.forms["myForm"]["soLuong"].value;
var kiemTraSL = isNaN(soLuong);
if ((soLuong == "") || (soLuong <= 0)) {
alert("Số lượng không được để trống và phải lớn hơn 0");
return false;
}
if (soLuong > 100) {
alert("Số lượng mua không được lớn hơn 100");
return false;
}
if (kiemTraSL == true) {
alert("Số lượng mua phải để ở định dạng số");
return false;
}
//Chọn ngày nhận hàng
var nm = document.forms["myForm"]["ngaymua"].value;
if (nm == "") {
alert("Ngày không được để trống");
return false;
}
//Chọn kiểu thanh toán
var ck = document.getElementById("ck");
var tt = document.getElementById("tt");
if ((ck.checked == false) && (tt.checked == false)) {
alert("Bạn phải chọn một kiểu thanh toán");
return false;
}
}

</script><br />


<form action="#" method="post" name="myForm" onsubmit="return validateForm()">




<table bgcolor="#DDDDDD" id="formdangky" style="width: 450px";>
<tbody>
<tr>
<td class="tenhang" width="118">Họ:</td>
<td width="320"><input name="ho" type="text" /></td>
</tr>
<tr>
<td class="tenhang">Tên:</td>
<td><input name="ten" type="text" /></td>
</tr>
<tr>
<td class=”tenhang”>Email:</td>
<td><input name=”email” type=”text” /></td>
</tr>
<tr>
<td class="tenhang">Số Điện Thoại:</td>
<td><input maxlength="11/" name="dienThoai" type="text" /></td>
</tr>
<tr>
<td class="tenhang">Số Lượng Mua:</td>
<td><input name="soLuong" type="text" /></td>
</tr>
<tr>
<td class="tenhang">Ngày Nhận Hàng:</td>
<td><input id="datepicker" name="ngaymua" type="text" /></td>
</tr>
<tr>
<td class="tenhang">Thanh Toán:</td>
<td><input id="ck" name="thanhToan" type="radio" value="chuyenKhoan" /> Chuyển Khoản
<input id="tt" name="thanhToan" type="radio" value="trucTiep" /> Trực Tiếp Khi Giao Hàng
</td>
</tr>
<tr>
<td><input name="Submit" type="submit" value="Đăng" /></td>
<td><input name="Reset" type="reset" value="Xóa" /></td>
</tr>
</tbody></table>
</form>

</body>
</html>

9/21/2016

Warrior Master Pack Combo - MRR

Rate this posting:

Warrior Forum Master + Warrior Plus Videos 2-for-1 COMBO PACK!




Product:                        Warrior Master Pack Combo - MRR             

Vendor:                         John at Goff's Concepts

Front-End Price:          $ 47 


1. Here's What You'll Learn:


  • What are "Warrior Special Offers" (WSO's) and how you can use them to catapult your business!

  • Introduction to building your business using the Warrior Forum and what will be covered in this course

  • Promoting your offer with "Warrior Banner Ads" to get immediate sales and great results!
  • The advantages of the "Warrior Classified Ads" section and why they are perfect for anyone wanting to get traffic & sales with few restrictions
  • How to directly advertise your Affiliate Program on the Warrior Forum to attract quality affiliates and get Joint Venture partners to promote your offers
  • Key strategies for increasing exposure from "Warrior Forum Marketing" and how you can get more clicks to your signature link
  • Additional resources & methods for using the Warrior Forum to grow your business, boost your income and make even more money!


>>> Click here to see Warrior Master Pack Combo - MRR <<<


2. Plus You'll Receive





  • How to use WarriorPlus to sell both free and paid products, list WSO's or even self hosted offers
  • Introduction to WarriorPlus and why it is one of the best networks in the Internet marketing niche
  • The advantages of WarriorPlus and why it's easier for affiliates to find your offer, gain mass exposure, and setup your products & sales funnels
  • Easy step-by-step video walkthrough for setting up your front end offer, affiliate program and sales funnel on WarriorPlus so you can sell & deliver your products.
  • The WarriorPlus listing process broken down so you can see first hand how to list and sell your offers!
  • How to boost your income with upsells & downsells and how to set this up on WarriorPlus to automatically take your customers through your funnel process
  • Additional features for getting the most out of WarriorPlus, including how to view your customer stats & affiliate requests, setup affiliate contests, discount coupons and more!















10/01/2015

MOONPIXLAR REVIEW

Rate this posting:

MOONPIXLAR  REVIEW  


moonpixlar review

1.   Vendor:                  Josh Ratta
2.   Product:                 MoonPixlar
3.   Launch Date:         2015-10-27
4.   Launch Time:        11:00 EDT
5.   Front-End Price:  $27-$47
6.   Bonus:    $1200+ from my site and invaluble                                                    bonuss in the packge >>click here

Josh Ratta introduction
moonpixlar review

Hi, I'm Josh Ratta,

I am the CEO of an online digital marketing company called inmotiontech, where we develop and sell software applications and video training programs for entrepreneurs, marketers and business owners .
I have extensive skills in video creation and website design as well as a good knowledge in the latest online marketing tactics which have enabled us to grow our online business substantially over the past few years.

What is Moon Pixlar?

MoonPixlar is a marketing graphics app which comes with a drag and drop user friendly interface to make creating graphics quick & easy.
MoonPixlar comes with 1,000’s of templates for different graphics you need in your business, from: Facebook Ad templates, Pinterest posts, Website header graphics, Info graphics, Social content posts & much more…
If you know how to click your mouse, all you need do is ‘’drag and drop’’ and you  can literally create any kind of graphic in minutes
MoonPixlar enables You To Create:
[+] Beautiful Facebook covers
[+] Website headers
[+] Banners Flyers, business cards
[+] Facebook posts Google posts
[+] Infographics
[+] Blog post graphics
[+] Pinterest Pins
[+] Facebook ads
[+]Youtube channel art
[+] and more all within one platform!
This is a software every entrepreneur & online marketers should have in their  arsenal to quickly & easily design your marketing graphics!
Besides what I list above, you can also create these with Moon Pixlar instantly.
[+] Banners
[+] Logos
[+] Business cards
[+] Infographics
[+] Blog post graphics
[+] Facebook fan page cover s
[+] Facebook posts
[+] Flyers…
[+] Ad images
[+] Email header graphics
[+] Website headers
[+] Google posts
[+] Twitter posts
[+] Pinterest pins
[+] Custom graphics
You name it…
moonpixlar review



Moonpixlar – a must-have Facebook graphics app…

video




Hey!

Are you sick and tired of churning fanpages after fanpages that get virtually no likes?

Do you wish there was an easier way to look like a professional with minimal effort?

Whatever you do online, branding will make or break your business…  But the truth is, branding yourself on Facebook is extremely difficult and time wasting if you don’t know how to go about it. 

You might try to hire a cheap graphics designer off FIVERR

… but I can safely bet you’ll be handed yet another sub-par template, your branding will look dirt-cheap and you will likely lose customers over it.

Or you might even try to hire a professional designer online…  But who wants to shell out $97 for a single Facebook fan page cover/design? 

I’m happy to let you know that there’s now, a cheaper more fast and reliable way to create, stunning, good looking Facebook graphics without going through the hassles of outsourcing.

Introducing…

==> Moonpixlar!

Moonpixlar is an all in one Facebook graphics designer
With Moonpixlar, you can create custom  
[+] Facebook post 
[+] Facebook fan page cover

And take your branding to the next level

Click here to check it out!  
 [LINK] 

   >>>   Click here to see MoonPixlar in Action   <<<


PS- Moonpixlar is currently on a huge special launch discount. So hurry  and take advantage of this offer before the price increases: 

LINK HERE AGAIN ;

doawnload moonpixlar


Thank you for reading Moonpixlar . Best wishes to you, Cheers !!!