近來我發現我一些同事。在用ajax時,用資料來源,都喜歡重新新建乙個頁面.其實我是很不喜歡這種模式,主要原因,一是後期維護麻煩,還要去找哪些頁面,二是不能呼叫一些本頁原有的資料方法.因此我在這裡做了乙個測試的案例。如下
cs**
1using
system;
2using
system.data;
3using
system.configuration;
4using
system.collections;
5using
system.web;
6using
system.web.security;
7using
system.web.ui;
8using
system.web.ui.webcontrols;
9using
system.web.ui.webcontrols.webparts;
10using
system.web.ui.htmlcontrols;
11using
system.web.services;
1213
public
partial
class
testajax : system.web.ui.page
142223}
2425
public
void
getval()
2632
33 }
aspx頁面
1<%@ page language="
c#" autoeventwireup="
true
" codefile="
testajax.aspx.cs
" inherits="
testajax
" %>23
"-//w3c//dtd xhtml 1.0 transitional//en""
">45
"" >
6232430
31
IntelliJ IDEA 如何配置資料來源
在 intellij idea 中,可以通過開啟 data sources and drivers 對話方塊來配置資料來源和測試你的資料庫連線。可能沒有辦法使用快捷鍵,雖然好像有快捷鍵是 shift enter,但是在 intellij idea 中會換行,並且將游標移動到第一行。可以用下面的方法 ...
checkboxlist如何配置資料來源?
在做專案中,通常checkboxlist中的checkitems不是固定的,需要繫結可變的資料來源,把資料新增到list集合中,如下 dataset mydata new dataset list list new list foreach datarow dr in mydata.tables 0...
純php返回本頁資料 用PHP如何實現頁面靜態化
當使用者訪問乙個不經常更新的web頁面,php接到指示對php指令碼檔案進行解析,從資料庫查詢到該頁面所需要的資料,然後對頁面模板進行渲染,最後將乙個成品頁面展示給使用者。單次請求對於伺服器來說非常簡單,處理起來非常快,但是如果同時有成千上萬各使用者請求該頁面呢?這無疑是對資源的一種浪費,這就是我們...