這週日剛好一整天沒事,到活動系統看一下有什麼活動可以參加好了。 這次想聽音樂會,於是將分類篩選中的音樂會多選方塊勾選起來,並且將活動舉辦日選擇為本週。 畫面顯示有個 A 樂團的音樂會,(當滑鼠移到報名按鈕時)發現按鈕無法點選,並且顯示已停止報名的文字,只好看看有沒有其他樂團的音樂會可以參加,於是在分類篩選中勾選起尚可報名的多選方塊。 這次看到了 B 樂團的音樂會並且狀態顯示可報名,於是點擊活動標題,瀏覽器導向到活動的詳細資訊頁面。 頁面最下方有個報名的按鈕可點選,點選後瀏覽器跳轉至個人資訊填寫頁面,如果會員尚未登入,則先跳轉至登入頁面;若會員已登入,且已事先在會員中心填寫好個人資訊,則個人資訊填寫頁面的欄位直接帶出相對應的值。 剛剛忘記看活動幾點開始了,於是到會員中心中的活動參加歷史頁面,查找剛剛的活動,藉此得知活動的資訊。
這次主題是使用自己擅長的 ASP.NET Core 來開發網頁程式「活動報名管理系統」,這個發想來自於自己的大學生活,因為大學活躍於社團活動,但大部分的活動舉辦與執行流程仍停留在紙本作業,如果有一個系統能夠提供大家在電腦或是行動裝置上進行活動的舉辦或是報名的話,就能減少多數的紙本作業,進而提高執行效率。
不過在這 30 天的內容,文章的撰寫模式會比較偏向個人筆記模式,除了會說明一些功能邏輯的程式碼,也會盡量帶到功能與套件的使用情境以及些許的原理,讓閱讀本系列文章的人可以知道哪些時候可以選擇適合的套件。 所以這系列的文章,我想會比較適合已經有使用 C# 與 ASP.NET Core 開發程式的基礎人士,至少不會提到該如何建立一個專案之類的事情。
Checkmarx version suggest v8.6.0 and up,use postman to try RESTapi. Postman’s Headers need to configure,follow document steps,and we can get token from first step.
// Is it an image? if( ( $uploaded_type == "image/jpeg" || $uploaded_type == "image/png" ) && ( $uploaded_size < 100000 ) ) {
// Can we move the file to the upload folder? if( !move_uploaded_file( $_FILES[ 'uploaded' ][ 'tmp_name' ], $target_path ) ) { // No echo '<pre>Your image was not uploaded.</pre>'; } else { // Yes! echo "<pre>{$target_path} succesfully uploaded!</pre>"; } } else { // Invalid file echo '<pre>Your image was not uploaded. We can only accept JPEG or PNG images.</pre>'; } } ?>
// Can we move the file to the upload folder? if( !move_uploaded_file( $uploaded_tmp, $target_path ) ) { // No echo '<pre>Your image was not uploaded.</pre>'; } else { // Yes! echo "<pre>{$target_path} succesfully uploaded!</pre>"; } } else { // Invalid file echo '<pre>Your image was not uploaded. We can only accept JPEG or PNG images.</pre>'; } } ?>
# Add the Firebase pod for Google Analytics pod 'Firebase/Analytics'
# Add the pods for any other Firebase products you want to use in your app # For example, to use Firebase Authentication and Cloud Firestore pod 'Firebase/Auth' pod 'Firebase/Firestore'