 |
|
ขอคำแนะนำหน่อยครับ อยากเขียนโปรแกรม พูดแล้วแปลเป็นตัวอักษรภาษาไทยใครพอจะมี TOOLS แปลบ้างครับ ???? |
|
 |
|
|
 |
 |
|
ความต้องการอันนี้ น่าสนใจเป็นอย่างยิ่งยวด (ความต้องการทาง นวัตกรรม)
--- สมมุติว่าผมทำได้ ผมยังไม่รู้เลยว่าผมจะเอาไปใช้ประโยชน์อย่างไร?/ตอนไหน?
ปล. ความต้องการของคุณแจ๋วมากฯ (บางครั้งคำว่าความต้องการ ผมก็จนลงเหมือนกัน (แตกต่างกับคำว่ารวยขึ้นนะ))
|
 |
 |
 |
 |
Date :
2016-12-03 20:27:30 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
จาก #NO1 คุณทำให้ผมรู้สึกว่า "ผมได้อะไรบางอย่างกลับคืนมาบ้าง"
บนโลกสมมุติ
|
 |
 |
 |
 |
Date :
2016-12-03 20:30:49 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
คุณห้ามตอบเกินวันละ 1 กระทู้หายหน้าไปเลย (สงสัยตายห่าไปแล้วข้อหากระทืบลูกนายพน)
ถ้ายังอยู่ก็ดีนะ
ปรกติผมใช้ .NET 4.0 เป็นหลัก (เพื่อ Support Windows XP/ Server รุ่นเก่า) แต่มาวันนี้ผมลองเล่น .NET 4.5.2 ดู
โอ้โห เบ่อเร่อเลย โครงสร้างมันเปลี่ยนแปลงไปเยอะมากดังรูปภาพ

สิ่งที่เปลี่ยนแปลงไปสรุปได้พอสังเขปดังนี้
1. ScriptManager Improvement (อันนี้คือสิ่งที่ผมต้องการ)
--- เพื่อ Bundle *.js/*.css
2. Web page .Designer หายไป
3. Web.config บางเบาลง
4. โครงสร้าง Folder เปลี่ยนแปลงไปค่อนข้างเยอะ
5. ...
อยากถามว่า ถ้าเอาขึ้น Production จริงมีปัญหาอะไรไหม?
--- ในกรณีที่เป็น Host เช่า
--- ในกรณีที่มี Host เป็นของตัวเอง (วาง Server เอง)
|
 |
 |
 |
 |
Date :
2016-12-04 09:17:12 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผลการทดสอบประสิทธิภาพในเบื้องต้น
ก่อน Update

4.55 KB Transfers. 878.81 ms Taken.
หลัง Update

4.55 KB Transfers. 161.72 ms Taken.
ประสิทธิภาพเพิ่มขึ้นมากโขพอดู
|
 |
 |
 |
 |
Date :
2016-12-04 09:47:08 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Optimize
Code (VB.NET)
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.Optimization
Imports System.Web.UI
Public Module BundleConfig
' For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkID=303951
Public Sub RegisterBundles(bundles As BundleCollection)
BundleTable.EnableOptimizations = True
bundles.Add(New ScriptBundle("~/bundles/WebFormsJs").Include(
"~/Scripts/WebForms/WebForms.js",
"~/Scripts/WebForms/WebUIValidation.js",
"~/Scripts/WebForms/MenuStandards.js",
"~/Scripts/WebForms/Focus.js", "~/Scripts/WebForms/GridView.js",
"~/Scripts/WebForms/DetailsView.js",
"~/Scripts/WebForms/TreeView.js",
"~/Scripts/WebForms/WebParts.js"))
' Order is very important for these files to work, they have explicit dependencies
bundles.Add(New ScriptBundle("~/bundles/MsAjaxJs").Include(
"~/Scripts/WebForms/MsAjax/MicrosoftAjax.js",
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js",
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js",
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js"))
' Use the Development version of Modernizr to develop with and learn from. Then, when you’re
' ready for production, use the build tool at http://modernizr.com to pick only the tests you need
bundles.Add(New ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"))
ScriptManager.ScriptResourceMapping.AddDefinition("respond", New ScriptResourceDefinition() With {
.Path = "~/Scripts/respond.min.js",
.DebugPath = "~/Scripts/respond.js"})
'BundleTable.EnableOptimizations = True
End Sub
End Module
'Web.Config
'<compilation debug="false" targetFramework="4.5.2" />
|
 |
 |
 |
 |
Date :
2016-12-04 09:53:23 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ยากแต่ก็ไม่ง่าย
----

|
 |
 |
 |
 |
Date :
2016-12-04 10:50:39 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
วันนี้ทำตัวว่างฯสักวันหนึ่ง พักผ่อนสมอง และค้นหาสิ่งที่ผมต้องการ
--- ทำอะไรไปเรื่อยเปื่อย ไร้ซึ่งกฏเกณฑ์
1. Clear Session เมื่อ Users ปิด Browser IE/FireFox/Chrome/etc... โดยกดปุ่ม (Alt + F4, Ctrl + F4, Close button).
--- https://code.msdn.microsoft.com/How-to-clear-session-when-660c1e6b#content
--- ทดสอบเบื้องต้น ผลลัพธ์เป็นที่พอใจ
Code (VB.NET)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>ClearSession</title>
<script src="Scripts/jquery-2.1.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
window.addEventListener('beforeunload', recordeCloseTime);
});
function recordeCloseTime() {
$.ajax({
type: "POST",
url: "ServiceToClearSession.asmx/RecordCloseTime",
});
}
</script>
</head>
<body>
<form id="DefaultForm" runat="server">
<div>
</div>
</form>
</body>
</html>
Code (VB.NET)
Public Class Customers
'Ctor
Sub New()
End Sub
Property CustID As Integer
Property CustCode As String
Property CustName As String
End Class
Private Sub Form_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim lstCustomers = New List(Of Customers)
lstCustomers.Add(New Customers With {.CustID = 1, .CustCode = "A0001", .CustName = "Amata company Ltd."})
lstCustomers.Add(New Customers With {.CustID = 2, .CustCode = "A0002", .CustName = "Aroma company Ltd."})
Dim lstIList As IList = lstCustomers
Dim lstObj0 = lstIList.Cast(Of Object).ToList().Find(Function(x) x.CustID = 2)
Dim lstObj1 = lstIList.Cast(Of Customers).ToList().Find(Function(x) x.CustID = 1)
'Debug Value
If 1=2 Then 'click this line and press F9
End If
End Sub
|
 |
 |
 |
 |
Date :
2016-12-04 13:09:42 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
จาก #NO8 อยากจะทดสอบโดยการเอา "เอาตีนเตะสายปลั๊กไฟ ให้ไฟดับกระทันหัน" (Power Off Sadenly)
--- ดูซิว่ามันยังทำงานได้ถูกต้องไหม? คิดไปคิดมา อย่าดีกว่า
|
 |
 |
 |
 |
Date :
2016-12-04 13:17:09 |
By :
หน้าฮี |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
To Guest
ขอบคุณครับสำหรับคำแนะนำ
|
 |
 |
 |
 |
Date :
2016-12-06 15:36:27 |
By :
thenot |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|