我想从转发器更新更新面板的控制权。
Repeater有一个Linkbutton,操作在转发器的ItemCommand事件上完成
请检查以下代码,并向我推荐一些内容。
#!/usr/bin/env ruby //shebang line to indicate path to ruby.
require 'cgi' //cgi file to create a simple cgi object.
cgi = CGI.new //instantiating a cgi object.
puts cgi.header //thats telling the server about the type(html).
puts "hello" // thats the output on the browser.