Showing posts with label writing. Show all posts
Showing posts with label writing. Show all posts

Wednesday, March 28, 2012

Installation problem - Urgent help needed

When installing the extentions on vista i get the following error "Error writing to file: System.Web.Extentions.Web.dll" Verify that you have access to that directory." I have turned UAC off and still get this error - can someone help as a matter of extreme urgency.

Kind Regards

Helga

Hi Helga,

I'm not aware of the accurate cause of this exception yet since it can be successfully on my vista.

May be you can try to install it into GAC manually, please refer to this thread: http://forums.asp.net/t/1134033.aspx

Hope this helps.

Monday, March 26, 2012

Intellisense in AJAX script ?

HI all the readers

Is there any way to get intellisense when writing AJAX script in javascript?

for example

Sys.WebForms. will list BeginRequestEventArgs, PageRequestManager...etc

or only way is to look up reference or memorize it~

Thanks all

Visual Studio "Orcas" will support this but until then there is no intellisense (with Visual Studio anyways)

Saturday, March 24, 2012

Invoke an UpdatePanel update from client script

I'm writing an application which is predominantly a client-centric application but I need to update a part of the page from a client script action. What is the correct way to do that? I presumed that you simply set the UpdateMode of your UpdatePanel to Always and then implemented ICallbackEventHandler on the page to do the async postback. I've done that, but my UpdatePanel is not updating... help :)

In my ClientCallback, I'm essentially rebinding the control that sits inside the UpdatePanel and then explicitly calling Update() on the UpdatePanel... but nothing.

Hi digory,

http://encosia.com/2007/07/13/easily-refresh-an-updatepanel-using-javascript/

Is this what you are looking for?

Wim.


It is. I was just trying that solution as you posted and it works fine. Thanks! Smile