Minh T. Nguyen

        "Enemy's Gate Is Down"
Search this site:

Minh Tri Nguyen Minh T. Nguyen enderminh Vietnamese nguyentriminh blog Visual Studio .NET Tips and Tricks Nguyễn Trí Minh
posts - 204, comments - 856, trackbacks - 123

Whidbey's Client Callback Feature on DotNetJunkies

My first article appeared today on DotNetJunkies.com:

http://www.dotnetjunkies.com/Tutorial/E80EC96F-1C32-4855-85AE-9E30EECF13D7.dcik

I wrote about ASP.NET 2.0's new Client Callback Feature, which allows you to call server-side methods from JavaScript without the need for posting back. As an example, I built a Windows Explorer-lookalike that is all client-script driven although you navigate through the server's file system.

I'd like to thank Adam Kinney and Derrill Dabkoski for proof-reading the article and provide me with suggestions.

posted on Tuesday, May 04, 2004 10:44 PM

Feedback

# re: Whidbey's Client Callback Feature on DotNetJunkies

Congratulations Minh!

Glad to help out.
5/5/2004 7:43 AM | Adam Kinney

# re: Whidbey's Client Callback Feature on DotNetJunkies

Can you comment on the suitability of Client Callback for real 'Internet' web solutions?

From what I can see, the feature is IE specific on the PDC and CTP versions of ASP.NET 2.0.

I read that Mozilla has support for 'XML http request objects' (see
http://webfx.eae.net/dhtml/xmlextras/xmlextras.html) but the javascript injected by ASP.NET is IE specific.

Do you know of any plan for cross browser support?

Marcus
5/6/2004 2:34 AM | Marcus

# re: Whidbey's Client Callback Feature on DotNetJunkies

Marcus,

Sorry for the soo late reply.

This feature is ASP.NET 2.0 specific, yes. It's a new ASP.NET 2.0 feature. However, it should work on any browser that can instantiate the XMLHTTP object. This includes all major versions of IE and possibly other browsers such as Netscape as well. However, I have not done these test yet, and will do so. I will let you know here.
In addition, the Request.Browser object will tell you whether the browser supports Callback or not.

Hope this helps,
Minh T. Nguyen (again, I will try out Mozilla and Mac IEs as well some day).
5/11/2004 9:47 AM | http://enderminh.com/netdev

# re: Whidbey's Client Callback Feature on DotNetJunkies

Good job, Minh!
6/14/2004 3:49 PM | Derrill Dabkoski

# re: din seria ASP.NET 2.0

6/24/2004 12:33 AM | Andrei's Blog

# re: Client Callbacks with ASP.NET 2.0

6/24/2004 12:34 AM | Andrei's Blog

# re: din seria ASP.NET 2.0

6/24/2004 1:11 AM | Andrei's Blog

# re: Client Callbacks with ASP.NET 2.0

6/24/2004 1:12 AM | Andrei's Blog

# re: Whidbey's Client Callback Feature on DotNetJunkies

I implemented the callback example, and it works great in IE. However in Mozilla it chokes with an error

Error: pageUrl is not defined
Source File: http://localhost:35084/PlayWithAspCallBackFeature/WebResource.axd?a=s&r=WebForms.js&t=632248968185287500
Line: 53

Here is the line of code from the .axd file that asp.net is automatically generating.

if (pageUrl.indexOf("?") != -1) {
xmlRequest.open("GET", pageUrl + "&" + postData, false);
}

An idea how to get around this??

Also their is another error on the page in mozilla, that shows up in the javascript console but not to the user. Don't know if that has anything to do with it.

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsITransferable.getAnyTransferData]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://global/content/nsTransferable.js :: anonymous :: line 132" data: no]

Any ideas??
Thanks
Ashish
7/22/2004 4:25 PM | Ashish

# re: Whidbey's Client Callback Feature on DotNetJunkies

Do you know if there need to be any special permissions set for this feature to work?
Because it works fine on my local server (WinXP, IIS 5.1) but returns javascript errors related to webresource.axd loading webforms.js and scripts for validation controls when put on production server (Win2k server, IIS 5.0).

Any suggestions?
9/3/2004 4:11 AM | gregx73

# ASP.NET 2.0 and Cross Browser Support

Scott Guthrie talks about cross browser support in ASP.NET 2.0, but is the new Client Callback fixed?
11/10/2004 1:38 AM | Marcus Mac Innes' Blog

# ASP.NET 2.0 and Cross Browser Support

Scott Guthrie talks about cross browser support in ASP.NET 2.0, but is the new Client Callback fixed?
11/10/2004 1:40 AM | Marcus Mac Innes

# re: Whidbey's Client Callback Feature on DotNetJunkies

Sorry for the long wait guys. I haven't played with Mozilla and FireFox yet, so I don't know if it works for those browsers. However, the code that I wrote was using a relatively "old" version of .NET 2.0. Let's wait until .NET 2.0 is actually released. I am sure until then there will be a lot of changes in regards to this.

Thanks,
Minh T. Nguyen.
11/16/2004 11:33 PM | Minh T. Nguyen

# re: Whidbey's Client Callback Feature on DotNetJunkies

This is tragic.
Microsoft, just read http://jibbering.com/2002/4/httprequest.html,
you dunces. Please don't expect other browser vendors to start supporting sicko activex methods of instantiation.
11/26/2004 6:27 AM | rjw

# re: Whidbey's Client Callback Feature on DotNetJunkies

There is one gotcha though. By default, ASP.NET 2.0 thinks Mozilla doesn't support callbacks/xmlhttp. The truth is that it can handle this stuff perfectly. To tell ASP.NET that Mozilla based browsers do support this stuff, we have to extend the configuration of the webapplication (either your web.config or the machine.config):



<browserCaps>
<!-- GECKO Based Browsers (Netscape 6+, Mozilla/Firebird, ...) //-->
<case match="^Mozilla/5\.0 \([^)]*\) (Gecko/[-\d]+)? (?'type'[^/\d]*)([\d]*)/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*)).*">
browser=Gecko
type=${type}
frames=true
tables=true
cookies=true
javascript=true
javaapplets=true
ecmascriptversion=1.5
w3cdomversion=1.0
css1=true
css2=true
xml=true
tagwriter=System.Web.UI.HtmlTextWriter
supportsXmlHttp=true
supportsCallback=true
<case match="rv:(?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*))">
version=${version}
majorversion=${major}
minorversion=${minor}
<case match="^b" with="${letters}">
beta=true
</case>
</case>
</case>
</browserCaps>

4/2/2005 8:04 AM | Wylie

# re: Whidbey's Client Callback Feature on DotNetJunkies

I have the same issue - works fine on my XP box, but fails on Server 2003, IIS5.0 I can see WebReference.axd is not being downloaded into Temporary Internet Files from my production box. Trouble...
4/5/2005 1:45 PM | HEY gregx73

# re: Whidbey's Client Callback Feature on DotNetJunkies

Has anyone found a solution to the WebResource.axd not being found (404) on Windows 2003? I see two ther complaints about the problem, but no solutions. Any suggestions would be greatly appreciated.
8/29/2005 11:29 AM | Mark

# re: Whidbey's Client Callback Feature on DotNetJunkies

Same trouble here- WebResource.axd not found running on IIS6/Server 2003 (asp.net 2.0 beta 2)- Any help? I'm not even trying to use the 'Client Callback' feature, just the standard javascript postback scripts- I get the 'WebForm_PostBackOptions' is undefined...
10/3/2005 3:37 PM | navdeveloper

# re: Whidbey's Client Callback Feature on DotNetJunkies

Webresource.axd Not found error occurs when we load the system heavily in performance testing.....Could any one help!!
10/26/2005 5:06 AM | Siva

# re: Whidbey's Client Callback Feature on DotNetJunkies

Ditto on the Webresource.axd Not found error. I developed using realeased version VS2003 works fine on my XP dev machine but fails after deployng to Win2003 server. Webresource.axd was Called from the new ASP menu control.
12/21/2005 10:27 AM | Happy Valley Farmer

# re: Whidbey's Client Callback Feature on DotNetJunkies

As a workaround you can create an emtpy WebResource.axd file in the root folder.
1/17/2006 8:57 PM | Reeve

# re: Whidbey's Client Callback Feature on DotNetJunkies

FIXED!

Don't do those workarounds. Fix it. Now you can, here's the solution. It's an IIS option.

On the aspnet_isapi.dll extension, specifically for the .axd extension, turn OFF option 'Verify that file exist'.

Once WebResource.axd is requested (or any .axd file) IIS will check if the file exists. Since it does not exist, IIS returns a 404.
WebResource.axd is a new built-in HTTP handler in ASP.NET 2.0
4/20/2006 2:40 PM | geertdo

# re: Whidbey's Client Callback Feature on DotNetJunkies

I've been getting the 404 error for WebResource.axd as well, but the setting on my site for 'Verify that file exists' is off already...
Any other ideas?

-Joel
4/28/2006 10:53 AM | Joel

# re: Whidbey's Client Callback Feature on DotNetJunkies

It is not Fixed. Your workaround does not work.

I have found Microsoft MVP's say to NOT create a dummy file, do NOT put all your javascripts into one file which you call webresource.axd and upload it yourself. And the reason cited is that ASP.NET 2.0 is SUPPOSED to create the file for you.

But the reality is that it only works on developer stations and not on production IIS 6 servers. Which gives rise to the "it's the code", "no, it's the server" war that takes place between developers and sysadmins.

Nice.

Lots of people with the problem... not a single viable solution. Where's a microsoft knowledgebase article when you need one?

I'm attaching iisstate to see if I get anything out of that.

Here's what I am seeing... when I do anything to the extention... turn on verify file exists, apply the changes, and then turn it off and apply the changes... it works for a while and then breaks again. If I remove the extension and put it back in, it works for a while and breaks again.

SecureIIS has nothing to do with this, because I have turned it off and do one of the above and it works for a while and then it breaks again. By breaks again, I mean it returns webresource.axd as a 404.

This isn't just this product, I am seeing this on custom code too.

If there's a fix or a knowledge base article, or someone knows how to get rid of this in a safe and supported way, please let everyone else know. The only "workaround" we have is to cat together all the js files into one webresource.axd and that takes us to the top of my post.

Thanks for readning,

EDF
7/21/2006 3:54 PM | EDF

# re: Whidbey's Client Callback Feature on DotNetJunkies

FOLLOW-UP:
Items involved: SecureIIS, IIS 6.0, ASP.NET 2.0, webresource.axd

Problem:
On IIS 6.0 with ASP.NET 2.0, your application is giving a 404 file not found error for the webresource.axd file.

iisstate didn't turn up anything useful for me and I wasn't going to chase dumps for days.

My Resolution (if this doesn't work for you, I'm sorry):
This may not be your case, but I found articles that reference wildcard application mappings that make things go crazy if they aren't installed correctly or with the right config.

I had SecureIIS installed on the system, but it was off and I would receive unpredictable results like those above... it would work if you play with the checkboxes for a while and then it wouldn't.

So I made sure to do the following:
In the wildcard application mappings I made sure to put the path into the box and checked do not verify. In my explicit case, I entered "C:\Program Files\eEye Digital Security\SecureIIS\Components\SecureIIS\SecureIIS.dll" and did not check the verify box. I then bounced the system.

This made it work every time and for hours past when it would normally go wierd.

Turning on SecureIIS would lead to the webresource.axd not downloading again. Even though the file would show up now when SecureIIS was off. The SecureIIS log would show it as missing.

eEye Support was no help. I spent hours flipping switches in SecureIIS on and off to no avail.

A Microsoft article explained that webresouce.axd only existed in memory, never on the filesytem and the framework would handle that. But since SecureIIS intercepts both the incoming and the outgoing transmissions and checks against a ruleset, it would intercept the call for the file because webresouce.axd didn't exist on the disk.

SecureIIS was intercepting the request for the file and returning a 404 because the file doesn't exist on the web server, only in memory.

Once I realized this, I found what I needed from the eEye knowledge base article KB000431 (posted here to help those who eEye support couldn't help):

To allow access to all sites that use virtual folders or files, you need to disable the VFE check for all sites via the steps below:

VFE Check - Global Disable:
- Using Explorer, navigate to \eEye Digital Security\Components\SecureIIS\Policies and open up web0.ini with a text editor
- Add (or modify if it exists) the following entry:
[IfFileExist]
Check=0
- Save the INI file.
- Select the “Site Security” component.
- Disarm SecureIIS
- Rearm SecureIIS

Voila!

This allows all the benefits of SecureIIS without checking for if webresource.axd exists. Unfortunately it is a global change and not a selective change. You could do it per site, but all my sites are ASP.NET 2.0, so why bother.

Doing this then, we can get as many of the benefits that we can get away with to keep the site safe and still allow functionality.

I look forward to IIS 7.0 where we finally get the tools and we need and build upon a real good start with IIS 6. THen we won't need these (or as many) extensions. Don't get me wrong... SecureIIS is a good (but expensive) product for what it does, but from what I see in IIS 7, I just don't see that I'll need SecureIIS then.

Thanks for reading. Good Luck!
EDF
7/25/2006 3:23 PM | EDF

# re: Whidbey's Client Callback Feature on DotNetJunkies

Hi,
I am having a website which I am trying to optimize the speed of the site.
The major problem I am getting is the size of webresouce.axd file size and I am getting WebResource.axd,WebResource(1).axd,WebResource(2).axd multiple of them with sizes 21kb, 242kb and 3kb respectively.
Any suggestion on how to reduce the size of these file and to avoid generation of mulitiple of them will be of great help

Thanks,
Dee
11/26/2006 9:16 AM | Dee

# re: Whidbey's Client Callback Feature on DotNetJunkies

http://latinusoi.cn/c/57|free gay porn sites
http://arrivingnc.cn/c/92|no www
http://heavingos.cn/c/46|wwwchoicecomau
7/19/2007 4:12 PM | ben

# re: Whidbey's Client Callback Feature on DotNetJunkies

There is one gotcha though. By default, ASP.NET 2.0 thinks Mozilla doesn't support callbacks/xmlhttp. The truth is that it can handle this stuff perfectly. To tell ASP.NET that Mozilla based browsers do support this stuff, we have to extend the configuration of the webapplication (either your web.config or the machine.config):
9/9/2007 12:00 PM | kraloyun oyunlar

# re: Whidbey's Client Callback Feature on DotNetJunkies

TSKLER EDERIMM
12/28/2007 2:32 PM | aşk

# re: Whidbey's Client Callback Feature on DotNetJunkies

sagolasinn
12/28/2007 2:32 PM | aşk

# re: Whidbey's Client Callback Feature on DotNetJunkies

sagol dostumm
12/28/2007 2:33 PM | OYUNLAR

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanksss
12/28/2007 2:33 PM | oyun siteleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

çok güzel
12/28/2007 2:34 PM | oyunlar

# re: Whidbey's Client Callback Feature on DotNetJunkies

tskl ederimmm
12/28/2007 2:37 PM | kız oyunları

# re: Whidbey's Client Callback Feature on DotNetJunkies

very useful. thanks
12/29/2007 9:34 AM | forum

# re: Whidbey's Client Callback Feature on DotNetJunkies

Scott Guthrie talks about cross browser support in ASP.NET 2.0, but is the new Client Callback fixed?
1/7/2008 4:34 AM | kral oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

very good site
1/10/2008 2:46 PM | automotive repair manual

# re: Whidbey's Client Callback Feature on DotNetJunkies

Interesting article!
Thanks
1/21/2008 1:09 PM | digital photo frame

# re: Whidbey's Client Callback Feature on DotNetJunkies

thankss
1/22/2008 10:49 AM | oyun siteleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

tskler
1/22/2008 10:50 AM | müzik

# re: Whidbey's Client Callback Feature on DotNetJunkies

I tried a lot of the different options for fixing this which you can find on-line.

The only thing that finally fix this problem for me, was to uncheck the "Verify that file exists" check box for the Wildcard entry I had under IIS Properties for the site>Home directory>Configuration...>"Edit" on the entries for the wildcard entries>Uncheck the check box.

To me it does not make sense that wildcard would overrule the specific entry that states that AXD files should be loaded as such.. (stated in the Application extensions section above) But it seems to do so anyway.

This saved my day that is for sure!

Good luck out there!

EPi_Boy
1/23/2008 7:48 AM | EPi_Boy

# re: Whidbey's Client Callback Feature on DotNetJunkies

sagolllllllllllll
1/31/2008 1:31 PM | balık avı

# re: Whidbey's Client Callback Feature on DotNetJunkies

When you can call server-side methods from JavaScript without the need for posting back it is a great thing.
2/10/2008 7:30 AM | Atlanta Ga Real Estate

# evden eve nakliyat

methods from JavaScript without the need for posting back it is a great thing
2/13/2008 10:52 AM | defter

# evden eve nakliyat

methods from JavaScript without the need for posting back it is a great thing
2/13/2008 10:54 AM | defter

# evden eve nakliyat

methods from JavaScript without the need for posting back it is a great thing
2/13/2008 10:54 AM | evdev eve nakliyat

# re: Whidbey's Client Callback Feature on DotNetJunkies

thankss
2/13/2008 10:55 AM | evdev eve nakliyat

# re: Whidbey's Client Callback Feature on DotNetJunkies

thankss
2/13/2008 10:55 AM | evdev eve nakliyat

# Callback Feature on DotNetJunkies

When you can call server-side methods from JavaScript without the need for posting back it is a great thi
2/13/2008 11:10 AM | chat

# llback Feature on DotNetJunkies

When you can call server-side methods from JavaScript without the need for posting back it is a
2/13/2008 11:11 AM | sohbet

# ck Feature on DotNetJunkies

By default, ASP.NET 2.0 thinks Mozilla doesn't support callbacks/xmlhttp. The truth is that it can handle this stuff perfectly. To tell ASP.NET that Mozilla based browsers do support this stuff, we have to extend the configuration of the webapplication (either your web.
2/13/2008 11:12 AM | sohbet

# Callback Feature on DotNetJunkies

Mozilla doesn't support callbacks/xmlhttp. The truth is that it can handle this stuff perfectly. To tell ASP.NET that Mo
2/13/2008 11:13 AM | sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

tganssss
2/15/2008 3:35 PM | oyun siteleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

thank you ..The truth is that it can handle this stuff perfectly. To tell ASP.NET that Mo
2/19/2008 5:28 AM | evden eve nakliyat

#  prli bloglar payla??yorum - Webmaster Forum & Webmaster Okulu

prli bloglar payla??yorum - Webmaster Forum & Webmaster Okulu
3/11/2008 12:33 PM | Pingback/TrackBack

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thanksss
3/11/2008 1:21 PM | Chat

# Jaluzi

I have found Microsoft MVP's say to NOT create a dummy file, do NOT put all your javascripts into one file which you call webresource.axd and upload it yourself. And the reason cited is that ASP.NET 2.0 is SUPPOSED to create the file for you.
3/12/2008 3:29 AM | Jaluzi

# re: Whidbey's Client Callback Feature on DotNetJunkies

danisregulator voltage regulator servo regulator trifaze regulator monofaze regulator kombi regulatoru
3/13/2008 2:08 AM | regulator

# re: Whidbey's Client Callback Feature on DotNetJunkies

thank you gread site.
3/14/2008 2:38 PM | indir

# re: Whidbey's Client Callback Feature on DotNetJunkies

great
3/15/2008 1:24 AM | msn nickleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

thank you
3/16/2008 9:51 AM | mladinska

# Paylaşım Forumu

<a href="http://www.hayatsite.com">Eglence Forumlari</a>
3/16/2008 3:48 PM | Mechul

# re: Whidbey's Client Callback Feature on DotNetJunkies

Good thanx
3/17/2008 5:51 PM | Toplist

# re: Whidbey's Client Callback Feature on DotNetJunkies

Perfect.. Thnx
3/17/2008 5:52 PM | Toplist

# re: Whidbey's Client Callback Feature on DotNetJunkies

Nice.. Thank you.
3/17/2008 5:53 PM | Pars Narko Terör

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanksss
3/17/2008 5:54 PM | Sevgi

# re: Whidbey's Client Callback Feature on DotNetJunkies

Love love lovee
3/17/2008 5:55 PM | Sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

Game play time
3/17/2008 5:55 PM | Oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

Toplist , Site Add
3/17/2008 5:56 PM | Toplist

# re: Whidbey's Client Callback Feature on DotNetJunkies

Baris Akarsu
3/17/2008 5:57 PM | Barış Akarsu

# re: Whidbey's Client Callback Feature on DotNetJunkies

granmapa creations
3/17/2008 5:58 PM | granmapa creations

# re: Whidbey's Client Callback Feature on DotNetJunkies

Turkce Mp3
3/17/2008 5:59 PM | Türkçe Mp3

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
3/24/2008 7:46 PM | chat

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
3/24/2008 7:46 PM | sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thats nice thank you very much.
3/26/2008 3:15 PM | Gurbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

great post woww thanx
3/27/2008 4:51 PM | Cool Pictures

# re: Whidbey's Client Callback Feature on DotNetJunkies

good information thanx
3/27/2008 4:52 PM | Resimler

# Okey

thanks very good
3/28/2008 11:47 PM | Okey

# all

thankss veryf good
3/30/2008 3:18 AM | vido

# re: Whidbey's Client Callback Feature on DotNetJunkies

dcsdfgdmhgfmgz
4/3/2008 6:59 PM | forum

# re: Whidbey's Client Callback Feature on DotNetJunkies

Tskler .... .
4/5/2008 11:21 AM | Sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanksssssss
4/12/2008 12:16 PM | +18 oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks ;] great site.
4/19/2008 3:19 AM | darmowe programy

# re: Whidbey's Client Callback Feature on DotNetJunkies

yes, great. thanks a lot of..
4/19/2008 3:19 AM | darmowe mp3

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
4/28/2008 12:40 PM | thanks

# SOHBET

thanks
5/8/2008 1:14 PM | SOHBET

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanksss to blog
5/10/2008 1:22 AM | girl game

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thanks for it
5/19/2008 5:09 AM | burYq

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks admin
5/20/2008 12:33 PM | resimler

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
5/20/2008 12:36 PM | +18 Oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanksssssss
5/25/2008 1:10 PM | +18 oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

tsk ederimmmmmmmm
5/25/2008 1:11 PM | +18 oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

tym
5/27/2008 5:36 PM | dizi izle

# re: Whidbey's Client Callback Feature on DotNetJunkies

sagoll
5/31/2008 10:00 AM | blackgrup

# cam balkon

thank youu
6/1/2008 12:49 PM | cam balkon

# cam balkon

thankss
6/1/2008 12:49 PM | cam balkon

# aşk

thankss
6/1/2008 12:52 PM | aşk

# düğün şarkıcısı

dügün sarkicisi, dügün sarkicisi dizisi, dügün sarkicisi resimler, dügün sarkcisi videolari,
umut kurt, umut kurt biyografi, umut kurt resimleri, umut kurt videolari, umut kurt hakkinda,
dügün sarkicisi müzikleri, dügün sarkicisi hakkinda, dügün sarkicisi fanclub
6/2/2008 3:33 PM | düğün şarkıcısı

# re: Whidbey's Client Callback Feature on DotNetJunkies

ok
6/6/2008 2:32 PM | sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thanks
6/7/2008 11:11 AM | Burak

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
6/12/2008 2:51 AM | ALLPlayer

# re: Whidbey's Client Callback Feature on DotNetJunkies

tavla oyunu oynayin
6/14/2008 1:48 AM | tavla

# re: Whidbey's Client Callback Feature on DotNetJunkies

siirtlilerin bulusma noktasi
6/24/2008 12:36 PM | siirt

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks admin
6/28/2008 5:31 AM | oyun siteleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

Congratulations Minh!
7/3/2008 8:51 AM | digital frames

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks admin
7/23/2008 2:09 PM | sesli

# re: Whidbey's Client Callback Feature on DotNetJunkies

thank you...
7/24/2008 10:57 PM | Estetik

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks enderminh...
8/5/2008 4:09 AM | oyunlar

# re: Whidbey's Client Callback Feature on DotNetJunkies

thansss
8/14/2008 2:40 AM | +18 oyun

# şifalı bitkiler

thanks...
8/18/2008 3:47 PM | şifalı bitkiler

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanxxxxx
8/21/2008 12:45 PM | camfrog

# re: Whidbey's Client Callback Feature on DotNetJunkies

nice , thanks.
8/22/2008 1:16 PM | arog

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thanks , man , nice article
8/22/2008 1:20 PM | gebelik

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks sites
8/31/2008 12:39 AM | dini

# lida

lida
9/1/2008 7:41 AM | lida

# lida

lida
9/1/2008 7:41 AM | lida

# web tasarımı

web tasarimi
9/1/2008 7:42 AM | web tasarımı

# teknoloji

msn,oyun hileleri,chat,magazin,online oyunlar
9/1/2008 7:43 AM | teknoloji

# re: Whidbey's Client Callback Feature on DotNetJunkies

ty man
9/8/2008 5:44 AM | dizi izle

# re: Whidbey's Client Callback Feature on DotNetJunkies

??????????????!?????????,???????????????????????,????????????,????,?Google????????
9/13/2008 12:21 AM | Otel

# Güzel Sözler

http://www.damarsozler.com güzel sözler
9/17/2008 10:22 AM | Güzel Sözler

# Anlamlı Sözler

http://www.damarsozler.com Anlamli Sözler
9/17/2008 10:22 AM | Anlamlı Sözler

# özlü sözler

http://www.damarsozler.com özlü sözler
9/17/2008 10:23 AM | özlü sözler

# Chat

http://www.soyle.net Chats
9/17/2008 10:24 AM | Chat

# oyun

thanks alot
9/19/2008 1:40 AM | oyun

# oyunlar

thanks very nice page
9/19/2008 1:42 AM | oyunlar

# oyun oyna

her sey güzel olacak
9/19/2008 1:42 AM | oyun oyna

# Çocuk oyunları

thanks
9/19/2008 1:43 AM | çocuk oyunları

# işletme oyunları

thanks
9/19/2008 1:44 AM | işletme oyunları

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
9/20/2008 4:48 AM | cet

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thank you
9/21/2008 1:08 PM | iddaa

# re: Whidbey's Client Callback Feature on DotNetJunkies

thank you
9/24/2008 1:55 PM | forum oyunları

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
9/25/2008 11:48 AM | dizi izle

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thank You!
<a href="http://blog.hiperpaylas.com" title="sxe,sxe download,hiper" target="_blank">sxe download</a>
9/25/2008 12:45 PM | Hiper BLog

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
10/2/2008 4:18 AM | can

# re: Whidbey's Client Callback Feature on DotNetJunkies

thx ;)
10/3/2008 5:04 AM | can2

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks admi
10/3/2008 7:19 AM | oyun siteleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks adminnn
10/3/2008 7:19 AM | oyun oyna

# re: Whidbey's Client Callback Feature on DotNetJunkies

thankssssss
10/3/2008 7:24 AM | oyun siteleri

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks for share.
10/5/2008 1:03 AM | partner

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks for good write. i am reading now
10/10/2008 4:32 AM | tv izle

# Teknoloji

Thanks
10/10/2008 5:26 AM | Teknoloji

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
10/12/2008 8:44 AM | youtube

# Mp3 Dinle Müzik Dinle

müzik dinleme sitesi mükemmel bir site mp3 dinleyin sarki sözleri indirin

http://www.mp3muzikler.net
www.mp3muzikler.net
10/13/2008 7:34 AM | Mp3 Dinle

# re: Whidbey's Client Callback Feature on DotNetJunkies

very thanks for you!! OyunXXx
10/13/2008 5:39 PM | Oyun

# re: Whidbey's Client Callback Feature on DotNetJunkies

ty man nice to you homepage
10/15/2008 2:39 AM | diyet

# Arkadaş

thanks
10/15/2008 3:15 AM | ARkadaş

# re: Whidbey's Client Callback Feature on DotNetJunkies

ty
10/17/2008 2:32 AM | mirc

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
10/17/2008 5:57 PM | online Film izle

# re: Whidbey's Client Callback Feature on DotNetJunkies

tenkss
10/19/2008 12:02 PM | sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

tenks bebegim benim
10/19/2008 12:04 PM | chat

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
10/22/2008 2:03 AM | devbahis

# re: Whidbey's Client Callback Feature on DotNetJunkies

I tried a lot of the different options for fixing this which you can find on-line.

The only thing that finally fix this problem for me, was to uncheck the "Verify that file exists" check box for the Wildcard entry I had under IIS Properties for the site>Home directory>Configuration...>"Edit" on the entries for the wildcard entries>Uncheck the check box.

To me it does not make sense that wildcard would overrule the specific entry that states that AXD files should be loaded as such.. (stated in the Application extensions section above) But it seems to do so anyway.

This saved my day that is for sure!

Good luck out there!

thanks !!
10/22/2008 2:05 AM | moto

# re: Whidbey's Client Callback Feature on DotNetJunkies

Thanks you !.
10/22/2008 5:53 AM | cinsel urunler

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks
10/24/2008 10:54 AM | Sohbet

# re: Whidbey's Client Callback Feature on DotNetJunkies

thanks..
10/24/2008 10:55 AM | Chat