Advertisement
Advertisement
| 05.23.2008 at 10:49AM PDT, ID: 23428408 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: |
Page1.asp
<%@ Language=VBScript%>
<%Session.Codepage=65001%>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<form name="frm" action="test2.asp" method="POST">
<input type="text" name="txt1">
<input type="submit" value="submit">
</form>
--------------------------------------------------------------
Page2.asp
<%
Session.Codepage=65001
dim strTestSQL, strJustification
strJustification = "µ"
strJustification = Request.Form("txt1")
Response.Write(strJustification & "---strJustification<br />")
Response.Write(Request.Form("txt1") & "---Request.Form)<br />")
'strTestSQL = "UPDATE OUTLIER_HISTORY SET RESUB_JUSTIFICATION = ' µ -- Inserting with SQL INSERT stat' WHERE OUTLIER_HISTORY_ID = 89188"
'strTestSQL = "UPDATE OUTLIER_HISTORY SET RESUB_JUSTIFICATION = '" & strJustification & "' WHERE OUTLIER_HISTORY_ID = 89188"
strTestSQL = "INSERT INTO NAGENDRATEST(COL_V_CHAR, COL_V_BYTE, COL_N_CHAR, COL_CLOB, COL_NCLOB) VALUES ('" & Request.Form("txt1") & "','" & strJustification & "','" & Request.Form("txt1") & "','" & Request.Form("txt1") & "','" & Request.Form("txt1") & "' )"
Response.Write(strTestSQL & "--strTestSQL<BR />")
cnConnect.Execute(strTestSQL)
Response.Write("--Done<BR />")
%>
|