|
|
|
Tuesday, 20 December 2011 00:15 |
I’ve noticed a lot of discussion lately regarding methods to refresh an UpdatePanel via client script. This is very easy on the server side, of course. You can just call UpdatePanel.Update(). However, on the client side, the most common solutions is
OnLoad="UpdatePanel1_Load">
protected void UpdatePanel1_Load(object sender, EventArgs e)
{
Label1.Text = DateTime.Now.ToString();
}
__doPostBack() call is an async trigger of an UpdatePanel, the ASP.NET AJAX framework will intercept the postback and fire a partial postback instead. For purposes of demonstration, I’m going to add that to the OnClick event of the container div:
 Read more: |
|
|
Sunday, 16 January 2011 13:19 |
|
Setting Up An NFS Server And Client On Mandriva 2010.1 Spring
This guide explains how to set up an NFS server and an NFS client on
Mandriva 2010.1 Spring. NFS stands for Network File System;
through NFS, a client can access (read, write) a remote share on an NFS
server as if it was on the local hard disk. Read more: |
|
Monday, 20 December 2010 11:49 |
|
SSL Certificates For PostgreSQL
This describes how to set up ssl certificates to enable encrypted
connections from PgAdmin on some client machine to postgresql on a
server machine.
The assumption is that postgresql (compiled with ssl support) and
openssl are already installed and functional on the server (Linux).
PgAdmin is already installed on the client (either Windows or Linux). Read more: |
|
|
Friday, 12 November 2010 11:22 |
|
Setting Up An NFS Server And Client On Fedora 13
This guide explains how to set up an NFS server and an NFS client on
Fedora 13. NFS stands for Network File System; through NFS, a
client can access (read, write) a remote share on an NFS server as if it
was on the local hard disk. Read more: |
|
Tuesday, 05 October 2010 15:06 |
|
Setting Up An NFS Server And Client On Ubuntu 10.04
This guide explains how to set up an NFS server and an NFS client on
Ubuntu 10.04. NFS stands for Network File System; through NFS, a
client can access (read, write) a remote share on an NFS server as if
it was on the local hard disk. Read more: |
|
|
|
|
|
|
|