Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > ASP > ASP Forum > ห้าม save ข้อมูลซ้ำ และขึ้น message box หน้า install data เขียนโค้ดยังไงให้มันตรวจเช็ควันที่



 

ห้าม save ข้อมูลซ้ำ และขึ้น message box หน้า install data เขียนโค้ดยังไงให้มันตรวจเช็ควันที่

 



Topic : 041084



โพสกระทู้ ( 6 )
บทความ ( 0 )



สถานะออฟไลน์




หน้า install data เขียนโค้ดยังไงให้มันตรวจเช็ควันที่ (DateMade) และ IDผู้ประเมิน (PersonnelID)
ก่อน save ไม่ให้ save ซ้ำในวันเดียวกัน โดยให้ขึ้น message box มาให้คลิกกลับไปหน้า menu

ช่วยด้วยยย

<%@LANGUAGE="VBSCRIPT" CODEPAGE="874"%>
<!--#include file="../Connections/FirstClass.asp" -->
<%
Dim myMail,HTML

Set myMail = Server.CreateObject("CDO.Message")

'*** If Using Remote Server ***'
Dim cdoConfig
Set cdoConfig = MyMail.Configuration
With cdoConfig.Fields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "192.168.0.21"
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Update
End With

if request("submit1") = "submit" then
'on error resume next
'Set MyMail = server.Createobject("CDO.message")
'MyMail.From = "[email protected]"
'MyMail.From = Request("EmailFrom")
MyMail.Sender = Request("EmailFrom")

'MyMail.AddRecipient Request("EmailTo")
MyMail.To=Request("EmailTo")
MyMail.Subject = "Auto send 1st class service online"
'ใช้ textbody hyberlink mail
'MyMail.TextBody = "Dear Sir." & Chr(13) & Chr(10) & _
'"Your approval is required to act upon. The details of the 1st class service online can be found at the intranet." & Chr(13) & Chr(10) & _
'Request("Title") & " " & Request("FirstName") & " " & Request("LastName") &"."
MyMail.htmlBody = "Dear Sir." & "<br/>" & "Your approval is required to act upon. The details of the 1st class service online can be found at the intranet." & "<br/>" & Request("Title") & " " & Request("FirstName") & " " & Request("LastName") &"." & "<br/>" & "<a href='http://firstclass.lasikthai.com/trsc_firstclass/index.asp'>Link</a>"

'MyMail.TextBody = "Please, you approve for :" & Chr(13) & Chr(10) & _
'Request("Title") & " " & Request("FirstName") & " " & Request("LastName") &"."

'MyMail.HTMLBody = "<a href=""http://seb2a54/cdpedcsfaqs/cdpadminEditpage.aspx?quesid=" & Request.QueryString("QuesID") & """>Click to view question that was submitted.</a>"
'ใช้ได้
'MyMail.htmlBody = "<a href='http://intranet.lasikthai.com/firstclass/index.asp'>Link 1st Class Service</a>"

MyMail.Send
set MyMail = nothing
'MyMail toshow = "ส่งเมล์เรียบร้อยแล้ว"
end if
%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers=""
MM_authFailedURL="../TrscFalse.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
If (true Or CStr(Session("MM_UserAuthorization"))="") Or _
(InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
MM_grantAccess = true
End If
End If
If Not MM_grantAccess Then
MM_qsChar = "?"
If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
MM_referrer = Request.ServerVariables("URL")
if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
Response.Redirect(MM_authFailedURL)
End If
%>
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form1") Then

MM_editConnection = MM_FirstClass_STRING
MM_editTable = "dbo.RptDaily"
MM_editRedirectUrl = "../menu.asp"


' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")

' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next

' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),",")
MM_delim = MM_typeArray(0)
If (MM_delim = "none") Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none") Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none") Then MM_emptyVal = ""
If (MM_formVal = "") Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> "") Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'") Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End If
MM_tableValues = MM_tableValues & MM_columns(MM_i)
MM_dbValues = MM_dbValues & MM_formVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close

If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If

End If
%>
<%
Dim rstPersonnel__PID
rstPersonnel__PID = "1"
If (Request.QueryString("PersonnelID") <> "") Then
rstPersonnel__PID = Request.QueryString("PersonnelID")
End If
%>
<%
Dim rstPersonnel
Dim rstPersonnel_numRows

Set rstPersonnel = Server.CreateObject("ADODB.Recordset")
rstPersonnel.ActiveConnection = MM_FirstClass_STRING
rstPersonnel.Source = "SELECT * FROM dbo.Personneltrsc Where PersonnelID=" + Replace(rstPersonnel__PID, "'", "''") + ""
rstPersonnel.CursorType = 0
rstPersonnel.CursorLocation = 2
rstPersonnel.LockType = 1
rstPersonnel.Open()

rstPersonnel_numRows = 0
%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT>
function DoDateTime(str, nNamedFormat, nLCID)
dim strRet
dim nOldLCID

strRet = str
If (nLCID > -1) Then
oldLCID = Session.LCID
End If

On Error Resume Next

If (nLCID > -1) Then
Session.LCID = nLCID
End If

If ((nLCID < 0) Or (Session.LCID = nLCID)) Then
strRet = FormatDateTime(str, nNamedFormat)
End If

If (nLCID > -1) Then
Session.LCID = oldLCID
End If

DoDateTime = strRet
End Function
</SCRIPT>
<%
PersonnelID=Request.QueryString("PersonnelID")
DateMade=Request.QueryString("DateMade")
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Daily Report</title>
<script runat="server" language="vbscript" src="../scripts/web_vb.vbs"></script>
<!--web_js.js,web_client.vbs ใช้ messagebox-->
<script language="javascript" src="../scripts/web_js.js"></script>
<script language="vbscript" src="../scripts/web_client.vbs"></script>
<script language="JavaScript" src="../scripts/calendarDateInput.js"></script>
<link rel="stylesheet" type="text/css" href="../scripts/web_tab.css">
<script>
/*
Live Date Script-
Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use,
visit http://www.dynamicdrive.com
*/

//var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
//var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
var dayarray=new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat")
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()
var dn="AM"
if (hours>=12)
dn="PM"
if (hours>12){
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//change font size here
var cdate="<font color='#333333' class='font_s'><b>"+dayarray[day]+"</b>, "+montharray[month]+" "+daym+", "+year+" "+hours+":"+minutes+":"+seconds+" "+dn+"</font>"
if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else
document.write(cdate)
}
if (!document.all&&!document.getElementById)
getthedate()
function goforit(){
if (document.all||document.getElementById)
setInterval("getthedate()",1000)
}
///--------------------------------------
function CheckReviseAsst(){
// CheckBox Revise
var alertMsg = "Please complete the following fields:\n";

var l_Msg = alertMsg.length;
if(document.form1.S1.checked == false){
alert(" Please enter your Revise. ");
document.form1.AsstRevise.focus();
return (false);}

if (alertMsg.length == l_Msg){
return true;
}else{
//alert(alertMsg);
vbMsgBox(alertMsg, 48, "Validation Fields")
return false;
}
}
</script>
<script language = "vbscript">
sub submit1_onclick()
if (len(trim(document.form1.To.value)) = 0) then
msgbox "specify a Valid Recipent"
else
document.form1.submit
end if
end sub
</script>
<style type="text/css">
<!--
.style1 {font-size: 24px}
-->
</style>
</head>
<body onLoad="goforit()">
<form ACTION="<%=MM_editAction%>" METHOD="POST" name="form1" id="form1" onsubmit="return CheckDW()">
<!--<form ACTION="<%=MM_editAction%>" METHOD="POST" name="form1" id="form1" onsubmit="return CheckDW() && confirmsave('Confirm to save record ? <Yes/No>')">-->
<div align="center"><img src="../images/logotrsc.jpg" width="750" height="177" /><br />
<table width="750" border="0">
<tr>
<td align="center">
<img SRC="../images/menu1.jpg" name="image1" width="180" height="22" border="0" id="image1" onclick="MM_goToURL('parent','../menu.asp');return document.MM_returnValue" onMouseOver="this.src='../images/menu2.jpg'" onMouseOut="this.src='../images/menu1.jpg'" />
<img SRC="../images/ChangePW1.jpg" width="180" height="22" border="0" onclick="MM_goToURL('parent','../repassword.asp');return document.MM_returnValue" onMouseOver="this.src='../images/ChangePW2.jpg';" onMouseOut="this.src='../images/ChangePW1.jpg';" />
<img SRC="../images/logoff1.jpg" width="180" height="22" border="0" onclick="MM_goToURL('parent','../index.asp');return document.MM_returnValue" onMouseOver="this.src='../images/logOff2.jpg';" onMouseOut="this.src='../images/logoff1.jpg';" />
<img SRC="../images/exit1.jpg" width="180" height="22" border="0" onclick="self.close()" onMouseOver="this.src='../images/exit2.jpg';" onMouseOut="this.src='../images/exit1.jpg';" /> </td>
</tr>
</table>
<hr width="750" />
<span class="style1">Daily Report/แบบประเมินรายวัน </span>
<hr width="750" />
<table width="750" border="0" class="form_label2">
<tr>
<td width="437" height="26" align="left" valign="center" class="form_label2">
<%=(rstPersonnel.Fields.Item("Title").Value)%>&nbsp;
<%=(rstPersonnel.Fields.Item("FirstName").Value)%>&nbsp;&nbsp;<%=(rstPersonnel.Fields.Item("LastName").Value)%>

</td>
<td width="303" align="right" valign="middle" >Department:&nbsp;<%=(rstPersonnel.Fields.Item("Department").Value)%></td>
</tr>
<tr>
<td height="26" valign="center" class="form_label2" align="left">
<u>Date</u> : <%Response.Write DoDateTime(DateMade, 1, 2057)%>
</td>
<td align="right" valign="middle" >
<span id="clock"></span>
</td>
</tr>
</table>
<hr width="750" />
<table width="750" border="1" class="form_label2">
<tr>
<td height="38" colspan="2" align="center" valign="center" bgcolor="#999999">TRSC Standards / หัวข้อประเมิน </td>
<td colspan="2" align="center" valign="top" bgcolor="#999999">Score /<br />
คะแนนการประเมิน</td>
</tr>
<tr>
<td ><div align="center">S1</div></td>
<td width="496" align="left">Service with beautiful tone of voice and manner. Always keep smiling. Do not make patients or colleagues feel that you are hasty, abrupt, harsh, devious, offensive and cold or neglect them. Do not speak or behave with sarcasm. Do not insult them with your glance. Be able to adjust your manner and tone of voice to the situation; for example, when the patient feels insecure or needs confidence and consolation, you can make them feel confident in TRSC service.<br />
<em><font color="#0000FF">(ให้บริการด้วยน้ำเสียง และกิริยาที่สดชื่น ใบหน้ายิ้มแย้ม แจ่มใสเสมอ ไม่ทำให้คนไข้ ผู้ร่วมงาน รู้สึกว่ารีบร้อน เร่งรัด ตัดบท ห้วน ดุ ตะคอก ยอกย้อน ก้าวร้าว เย็นชา ห่างเหิน เงียบเฉย เพิกเฉย ไม่แสดงท่าทีหรือใช้คำพูด ประชดประชัน ไม่มองด้วยหางตา สามารถปรับกิริยาและน้ำเสียงได้ตามสถานการณ์เช่น เวลาที่คนไข้ต้องการความมั่นใจ เวลาที่คนไข้ต้องการการปลอบโยน ทำให้คนไข้มั่นใจในการรักษาของ TRSC)</font></em></td>
<td width="62" align="center">
<select name="S1">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td width="112"><textarea name="S1Detail" cols="20" rows="2" ></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">S2</div></td>
<td align="left">Be consistent in service. Have emotional stability, both in action, words and mind towards patients and colleagues.<br />
<em><font color="#0000FF">(มีความเสมอต้นเสมอปลายในการให้บริการ มีอารมณ์ที่คงที่ ทั้งการแสดงทางกาย วาจา และใจทั้งกับคนไข้ และผู้ร่วมงาน)</font></em></td>
<td align="center">
<select name="S2">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="S2Detail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">E</div></td>
<td align="left">Be enthusiastic in service. Be able to deal with patients and associates’ problems. Be enthusiastic in response to colleagues, superiors and inferiors.<br />
<em><font color="#0000FF">(กระตือรือร้นในการให้บริการ แก้ปัญหาเฉพาะหน้า ให้กับคนไข้ หรือผู้มาติดต่อ กระตือรือร้นในการตอบสนองต่อผู้ร่วมงาน ผู้บังคับบัญชา ลูกน้อง)</font></em></td>
<td align="center">
<select name="E">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="EDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">R</div></td>
<td align="left">Follow the TRSC Code of Practice as followings:<br />
1.1 Dressing (clothes, hair, shoes, name label and face) is clean and not smelly.<br />
1.2 Addressing Terms (direct, telephone, and e-mail).<br />
1.3 Service with right manner in suggestion, walking, standing, and sitting.<br />
1.4 Follow the company’s rules.<br />
<em><font color="#0000FF">(ปฏิบัติถูกต้องตาม TRSC Code of Practice ดังนี้ <br />
1.1 การแต่งกาย (เสื้อผ้า ผม รองเท้า ป้ายชื่อ ใบหน้า) สะอาด ไม่มีกลิ่น <br />
1.2 การกล่าวทักทาย ทั้งทางตรง ทางโทรศัพท์และทางemail <br />
1.3 ให้บริการด้วย กิริยาท่าทางถูกต้อง ทั้งการแนะนำ การเดิน การยืน การนั่ง<br />
1.4 ปฏิบัติตามกฏระเบียบ องค์กร ฝ่าย แผนก กฏกติกางานกลุ่ม/ ใบงาน กิจกรรมต่างๆ (การขาด ลา ต่างๆ ทำตามระเบียบองค์กร) มีผลต่อค่า 1st class service หมายเหตุ : สถิติการเข้างานไม่มีผลต่อการประเมินชุดนี้ แต่จะนำมาเป็นสถิติประเมินประจำปี)</font></em></td>
<td align="center">
<select name="R">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="RDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">C</div></td>
<td align="left">Service with courteous manner. Be humble and polite. Do not think that you know better. Do not insult the inferiors (in qualification and age). Be consistent; although you do not like patient or colleague, do not let him/her know. Be patient and reasonable.<br />
<em><font color="#0000FF">(ให้บริการด้วยความสุภาพ อ่อนน้อม ถ่อมตน ไม่ก้าวร้าว ไม่แข็งกระด้าง ไม่อวดรู้ อวดดีว่าตนเองเก่งกว่า ไม่ดูถูกผู้อื่นโดยเฉพาะผู้ที่ด้อยกว่าตนเองทั้งคุณวุฒิและวัยวุฒิ/ไม่เลือกปฏิบัติ ถึงไม่ชอบก็ไม่แสดงออกต่อคนไข้ และผู้ร่วมงาน มีความอดทน อดกลั้นและปฏิบัติด้วยสันติวิธี)</font></em></td>
<td align="center">
<select name="C">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="CDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">ER</div></td>
<td align="left">Promptly response to patients, associates, colleagues, superiors, and inferiors. If you can not response promptly, you have to explain the reasons. Do not ignore the patients’ requests. You have to answer them within five minutes. Even you do not know the answers, do not ignore the problems .Try to solve the problems promptly and do not strict to your own opinion and deny.<br />
<em><font color="#0000FF">(ตอบสนองต่อ คนไข้ ผู้มาติดต่อ ผู้ร่วมงาน ผู้บังคับบัญชา ผู้ใต้บังคับบัญชา รวดเร็วทันใจ หากไม่สามารถตอบสนองได้ทันที จะแจ้งให้ทราบถึงเหตุผล ไม่เพิกเฉยต่อการร้องขอใดๆ กรณีคนไข้ร้องขอสิ่งใด ต้องมีคำตอบให้คนไข้ภายใน 5 นาที ถึงแม้ว่าจะได้หรือไม่ก็ตาม/ไม่แสดงท่าทีนิ่งเฉยต่อสิ่งต่างๆ ต่อปัญหา พยายามหาแนวทางในการตอบสนองเสมอ ในทันทีไม่ยึดติดกับความคิดตนเองและปฏิเสธ)</font></em></td>
<td align="center">
<select name="ER">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="ERDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">Open Minded</div></td>
<td align="left">Pleased to be advised. Do not be arrogant, dispute or find reasons to support yourself. Be able to take the advice you gained from the others to improve yourself. Be opening minded and frank. Reveal your own feeling, such as, in group or department‘s meeting. Do not remain silent and keep your ideas in your mind because it cannot help solving problems. Do not lie. Try to develop your work ability and make it obviously. <br />
<em><font color="#0000FF">(ยินดีรับคำว่ากล่าวตักเตือน ไม่อวดดี ไม่เถียงตลอด หรือหาเหตุผลมีสนับสนุนตนเองเสมอ สามารถนำเอาคำแนะนำ ไปปรับปรุงตนเองให้ดีขึ้น /มีลักษณะ เปิดใจ เปิดเผย แสดงออกถึงความรู้สึก ทั้งกรณีชอบ และไม่ค่อยชอบ (ในโอกาสที่เหมาะสม เช่น การประชุมกลุ่มย่อยประจำแผนก/ฝ่าย) ไม่เก็บเงียบ คิดอย่างเดียว แต่ไม่หาหนทางแก้ไขให้ดีขึ้น ไม่โกหก มีการพัฒนาการทำงาน พัฒนาความคิด อย่างเป็นรูปธรรมเห็นได้ชัดเจน)</font></em></td>
<td align="center">
<select name="OpenMinded">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="OMDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">Positive Thinking</div></td>
<td align="left">Think that problems should be solved. Always act in positive ways toward patients, organization, boss, inferiors, both in action and words.<br />
<em><font color="#0000FF">(มองปัญหาว่าเป็นสิ่งที่ควรได้รับการแก้ไข แสดงออกในทางบวกทั้งกับคนไข้ องค์กร เจ้านาย ผู้ใต้บังคับบัญชา ทั้งกาย วาจา อย่างสม่ำเสมอ)</font></em></td>
<td align="center">
<select name="PositiveThinking">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="PTDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td align="left"><div align="center">Team Work</div></td>
<td align="left">Able to cooperate with colleagues to make TRSC successful. If the officials are dissociated, the company must face failure. If you have problems with your colleagues, try to solve the problems mutually. To accomplish the company’s purposes, do not use mention that personal problems cause failure in your work.<br />
<em><font color="#0000FF">(ทำงานภายใต้หลักการสามัคคีและช่วยกันให้ TRSC สำเร็จ ถ้าทะเลาะกัน แยกเป็นก๊ก เป็นเหล่า TRSC อยู่ไม่รอดแน่ ทั้งการแสดงออกทางกาย วาจา และใจ เมื่อเกิดความไม่เข้าใจ มีความขัดแย้ง ไม่พอใจ บอกได้ว่าเกิดปัญหาความขัดแย้ง หาแนวทางการแก้ปัญหาร่วมกัน เพื่อทำให้งานบรรลุเป้าหมายที่ตั้งไว้/ไม่นำความขัดแย้งระหว่างบุคคลมาเป็นข้ออ้างความไม่สำเร็จ)</font></em></td>
<td align="center">
<select name="TeamWork">
<option value="0"></option>
<option value="3.00" selected="selected">3.00</option>
<option value="4.00">4.00</option>
<option value="3.75">3.75</option>
<option value="3.50">3.50</option>
<option value="3.25">3.25</option>
<option value="3.12">3.12</option>
<option value="2.75">2.75</option>
<option value="2.50">2.50</option>
<option value="2.25">2.25</option>
<option value="2.00">2.00</option>
<option value="1.00">1.00</option>
</select> </td>
<td><textarea name="TWDetail" cols="20" rows="2"></textarea></td>
</tr>
<tr>
<td height="28" colspan="4" align="right" valign="center">
<!-- <input name="submit" type="submit" value="submit" onClick="if(!CheckJobs(this.form))return false;">-->
<input name="submit1" type="submit" value="submit">
&nbsp;
<input type="reset" value="reset" name="reset" onclick="return confirmreset('Confirm Reset Record ?')">
&nbsp;
<input name="close" type="submit" onclick="MM_goToURL('parent','../menu.asp');return document.MM_returnValue" value="Close"></td>
</tr>
</table>
<div align="center" ><a href="#top"><img src="../images/dot-totop02.gif" alt="top" border="0" vspace="3" width="30" height="11" hspace="0"></a></div>
</div>
<!-------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<input type="hidden" name="Title" size="54" value="<%=(rstPersonnel.Fields.Item("Title").Value)%>">
<input type="hidden" name="FirstName" size="54" value="<%=(rstPersonnel.Fields.Item("FirstName").Value)%>">
<input type="hidden" name="LastName" size="54" value="<%=(rstPersonnel.Fields.Item("LastName").Value)%>">
<input type="hidden" name="EmailFrom" size="54" value="<%=(rstPersonnel.Fields.Item("Email").Value)%>">
<input type="hidden" name="EmailTo" size="54" value="<%=(rstPersonnel.Fields.Item("EmailTo").Value)%>">
<input name="PersonnelID" type="hidden" value="<%=(rstPersonnel.Fields.Item("PersonnelID").Value)%>">
<input name="Accessor" type="hidden" value="<%=(rstPersonnel.Fields.Item("PersonnelID").Value)%>">
<input name="Department" type="hidden" value="<%=(rstPersonnel.Fields.Item("Department").Value)%>">
<input name="DateMade" type="hidden" value=" <%Response.Write (DateMade)%>">
<input name="DateOfEntry" type="hidden" value="<%=DoDateTime(Date(), 2, 1033)%>">
<input name="TimeMade" type="hidden" value="<%=Time()%>">
<input name="TimeEntry" type="hidden" value="<%=Time()%>">
<input type="hidden" name="MM_insert" value="form1">
</form>
</body>
</html>
<%
rstPersonnel.Close()
Set rstPersonnel = Nothing
%>



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-03-31 16:10:31 By : nutzu9346 View : 3668 Reply : 4
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ว่าจะช่วยดูแต่เยอะเกินครับ เอาเป้นว่าผมเขียนตัวอย่างให้ดูน่ะครับ


Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP & Microsoft Access Tutorial</title>
</head>
<body>
<%
Dim Conn,strSQL,objRec,objExec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("mydatabase.mdb"),"" , ""
strSQL = "SELECT * FROM customer WHERE CustomerID = '"&Request.Form("txtCustomerID")&"'  "
Set objRec = Conn.Execute(strSQL)
IF Not objRec.EOF Then
%>
		<script language="JavaScript">
               alert('CustomerID already exists');
		</script>
<%
Response.ENd
Else	
	strSQL = ""
	strSQL = strSQL &"INSERT INTO customer "
	strSQL = strSQL &"(CustomerID,Name,Email,CountryCode,Budget,Used) "
	strSQL = strSQL &"VALUES "
	strSQL = strSQL &"('"&Request.Form("txtCustomerID")&"','"&Request.Form("txtName")&"', '"&Request.Form("txtEmail")&"' "
	strSQL = strSQL &",'"&Request.Form("txtCountryCode")&"','"&Request.Form("txtBudget")&"', '"&Request.Form("txtUsed")&"') "
	Set objExec = Conn.Execute(strSQL)
	If Err.Number = 0 Then
		Response.write("Save Done.")
	Else
		Response.write("Error Save ["&strSQL&"] ("&Err.Description&")")
	End If
	
	Set objExec = Nothing

End If
objRec.Close
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
</body>
</html>







Date : 2010-03-31 19:51:50 By : webmaster
 


 

No. 2

Guest


พอดีใช้ Dreamweaver insert data โค๊ดตามข้างล่างนี้ค่ะ
เราจะเขียนแทรก ส่วนไหนว่าให้มันตรวจเช็ควันที่ (DateMade) และ IDผู้ประเมิน (PersonnelID)
ก่อน save ไม่ให้ save ซ้ำในวันเดียวกัน โดยให้ขึ้น message box มาให้คลิกกลับไปหน้า menu
รบกวนด้วยค่ะ
<%
' *** Edit Operations: declare variables

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form1") Then

MM_editConnection = MM_FirstClass_STRING
MM_editTable = "dbo.RptDaily"
MM_editRedirectUrl = "../menu.asp"


' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")

' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next

' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),",")
MM_delim = MM_typeArray(0)
If (MM_delim = "none") Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none") Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none") Then MM_emptyVal = ""
If (MM_formVal = "") Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> "") Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'") Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End If
MM_tableValues = MM_tableValues & MM_columns(MM_i)
MM_dbValues = MM_dbValues & MM_formVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close

If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If

End If
%>
Date : 2010-04-08 09:57:07 By : mink
 

 

No. 3



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

เลิกใช้ได้แล้วครับ Dreamweaver ใช้เฉพาะ Design ก็พอครับ
Date : 2010-04-08 09:59:14 By : webmaster
 


 

No. 4

Guest


ตอนนี้มัน error ตอน insert คืออะรัยค่ะ
Error Type:
Microsoft SQL Native Client (0x80040E14)
There are fewer columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.

มันจำเป็นหรือเปล่าว่าใน Table เรามีกี่ field เวลาเรา insert ต้องเขียน ครบทุกฟิลด์ใน table ด้วยหรือไม่
Date : 2010-04-08 16:13:20 By : minky
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ห้าม save ข้อมูลซ้ำ และขึ้น message box หน้า install data เขียนโค้ดยังไงให้มันตรวจเช็ควันที่
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่