473,795 Members | 3,081 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Urgent : IE Web control problem

Hi all,

I'm having an interesting problem with my IE Webcontrols. I'm using the
toolbar and when I test it in my browser using "http://localhost/mysite", it
works fine. Incidentally, I have "mysite" set up as a web application. Now
when I test it going through "http://mysite/no-ip.org" then the toolbar
doesn't work properly. It seems to merely render the images and any
subsequent embedded Javascript but there are no events fired to the server
upon clicking.

What could this pssibly be and how do I rectify this? I still want to
continue using IE Webcontrols.

Please help as this is quite urgent.

Regards
John.
Nov 19 '05 #1
3 2164
If the site works on your development machine, but not on the
test/production server (i.e. a different box), then the problem is most
likely related to the javascript library that supports webcontrols.

Double-check to make certain that you have the both "webctrl_client "
directory and the "aspnet_cli ent" directory available on your production
server.

Also, I have encountered situations where deployments to a Windows 2003
server can meet with an odd complication. There appears to be a second
version of the "aspnet_cli ent" javascript library, but -both- are identified
as version 1_1_4322. I can't say why the distinction exists or under what
circumstances it occurs; it may be related to a SP or tool install. The
behavior is similar to what you're describing... autopostback clicks don't
fire... but the problem isn't limited to IE WebControls. Even regular
ASP.NET buttons will fail in this scenario. If you encounter this same
problem, try doing a backup of the "aspnet_cli ent" dir on your server, and
copy over the one from your development machine.

If your failure scenario involves two different urls pointing to the same
box, then I don't have an immediate explanation. Barring some form of proxy
issue, you should be able to see the same directories through any Url that
hits your website.

Btw, your second Uri below has me a bit baffled; did you mean;
http://mysite/mypage.aspx
Or are you doing something particular with a .org filetype?

/// M
"Microsoft Newsgroups" <a@b.com> wrote in message
news:ut******** ******@TK2MSFTN GP14.phx.gbl...
Hi all,

I'm having an interesting problem with my IE Webcontrols. I'm using the
toolbar and when I test it in my browser using "http://localhost/mysite", it works fine. Incidentally, I have "mysite" set up as a web application. Now
when I test it going through "http://mysite/no-ip.org" then the toolbar
doesn't work properly. It seems to merely render the images and any
subsequent embedded Javascript but there are no events fired to the server
upon clicking.

What could this pssibly be and how do I rectify this? I still want to
continue using IE Webcontrols.

Please help as this is quite urgent.

Regards
John.

Nov 19 '05 #2
Hi,

I'm using two different url's to access the same box. M, I'm using dynamic
DNS to navigate to my site (which is my box at home). I'm using no-ip.org
(check the site out, if you want). Like I said, when I test the site using
Localhost everything works fine but when I come to the site using the
no-ip.org web site, I then have the problem with the toolbar not working.

Regards
John.

"MWells" <outbound__at_s ygnal.com> wrote in message
news:uJ******** ********@TK2MSF TNGP09.phx.gbl. ..
If the site works on your development machine, but not on the
test/production server (i.e. a different box), then the problem is most
likely related to the javascript library that supports webcontrols.

Double-check to make certain that you have the both "webctrl_client "
directory and the "aspnet_cli ent" directory available on your production
server.

Also, I have encountered situations where deployments to a Windows 2003
server can meet with an odd complication. There appears to be a second
version of the "aspnet_cli ent" javascript library, but -both- are
identified
as version 1_1_4322. I can't say why the distinction exists or under what
circumstances it occurs; it may be related to a SP or tool install. The
behavior is similar to what you're describing... autopostback clicks don't
fire... but the problem isn't limited to IE WebControls. Even regular
ASP.NET buttons will fail in this scenario. If you encounter this same
problem, try doing a backup of the "aspnet_cli ent" dir on your server, and
copy over the one from your development machine.

If your failure scenario involves two different urls pointing to the same
box, then I don't have an immediate explanation. Barring some form of
proxy
issue, you should be able to see the same directories through any Url that
hits your website.

Btw, your second Uri below has me a bit baffled; did you mean;
http://mysite/mypage.aspx
Or are you doing something particular with a .org filetype?

/// M
"Microsoft Newsgroups" <a@b.com> wrote in message
news:ut******** ******@TK2MSFTN GP14.phx.gbl...
Hi all,

I'm having an interesting problem with my IE Webcontrols. I'm using the
toolbar and when I test it in my browser using "http://localhost/mysite",

it
works fine. Incidentally, I have "mysite" set up as a web application.
Now
when I test it going through "http://mysite/no-ip.org" then the toolbar
doesn't work properly. It seems to merely render the images and any
subsequent embedded Javascript but there are no events fired to the
server
upon clicking.

What could this pssibly be and how do I rectify this? I still want to
continue using IE Webcontrols.

Please help as this is quite urgent.

Regards
John.


Nov 19 '05 #3
I'm assuming that no-ip offers essentially standard DNS services; your
hostname resolves to an IP, and your IIS server (optionally) checks the host
header to direct the request.

It sounds like you're seeing your website ok, but that not all of it works,
so we can probably assume that the DNS and host header configuration is all
satisfactory.

My money is still on the javascript library paths. I suspect you can see
them fine internally, and can't see them at all externally. Using both your
internal and external hostnames, try hitting the /aspnet_client and
/webctrl_client directories. You should get "Directory Listing Denied". If
from your external path you get a 404 error, that's your problem.

You should be able to resolve this by making copies of both directories into
your application directory.

"John F" <a@b.com> wrote in message
news:u8******** ******@TK2MSFTN GP14.phx.gbl...
Hi,

I'm using two different url's to access the same box. M, I'm using dynamic
DNS to navigate to my site (which is my box at home). I'm using no-ip.org
(check the site out, if you want). Like I said, when I test the site using
Localhost everything works fine but when I come to the site using the
no-ip.org web site, I then have the problem with the toolbar not working.

Regards
John.

"MWells" <outbound__at_s ygnal.com> wrote in message
news:uJ******** ********@TK2MSF TNGP09.phx.gbl. ..
If the site works on your development machine, but not on the
test/production server (i.e. a different box), then the problem is most
likely related to the javascript library that supports webcontrols.

Double-check to make certain that you have the both "webctrl_client "
directory and the "aspnet_cli ent" directory available on your production
server.

Also, I have encountered situations where deployments to a Windows 2003
server can meet with an odd complication. There appears to be a second
version of the "aspnet_cli ent" javascript library, but -both- are
identified
as version 1_1_4322. I can't say why the distinction exists or under what circumstances it occurs; it may be related to a SP or tool install. The
behavior is similar to what you're describing... autopostback clicks don't fire... but the problem isn't limited to IE WebControls. Even regular
ASP.NET buttons will fail in this scenario. If you encounter this same
problem, try doing a backup of the "aspnet_cli ent" dir on your server, and copy over the one from your development machine.

If your failure scenario involves two different urls pointing to the same box, then I don't have an immediate explanation. Barring some form of
proxy
issue, you should be able to see the same directories through any Url that hits your website.

Btw, your second Uri below has me a bit baffled; did you mean;
http://mysite/mypage.aspx
Or are you doing something particular with a .org filetype?

/// M
"Microsoft Newsgroups" <a@b.com> wrote in message
news:ut******** ******@TK2MSFTN GP14.phx.gbl...
Hi all,

I'm having an interesting problem with my IE Webcontrols. I'm using the
toolbar and when I test it in my browser using
"http://localhost/mysite", it
works fine. Incidentally, I have "mysite" set up as a web application.
Now
when I test it going through "http://mysite/no-ip.org" then the toolbar
doesn't work properly. It seems to merely render the images and any
subsequent embedded Javascript but there are no events fired to the
server
upon clicking.

What could this pssibly be and how do I rectify this? I still want to
continue using IE Webcontrols.

Please help as this is quite urgent.

Regards
John.



Nov 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
5998
by: js | last post by:
Hi all, I currently encounter a problem and it is urgent to me. After calling the MsgBox.Show(), the message box is shown with non-modal mode, what is the possible reason??? This only happen in the VB project, works fine in C# project. SystemModal and ApplicationModal MsgBoxStyle were all tried and there was no help.
4
4294
by: John | last post by:
Hi all, This really is quite an urgent matter. I have a page with multiple, dynamically-loaded user controls and when a user clicks on a button, the whole form is submitted. Now at this stage I know I need to call a function that will save data but I'm not sure exactly when to call this function. I've tried two ways and both seem to have 'gotcha's':
0
1782
by: Björn Bengtsson | last post by:
Hello! I have an urgent problem concerning ASP.NET, ADO.NET, SQL Server, XML and the TreeView control. I have two tables; one describing the products and one describing their relationships. A product may consist of multiple other products. So far everything is great. But one product may exist as a subproduct to multiple parent products. My tables:
6
1998
by: Anonymous | last post by:
Hello, I am loading a usercontrol with the LoadControl method and need to pass some data to the property of that control. How can I do that? THanks
16
2969
by: | last post by:
Hi all, I have a website running on beta 2.0 on server 2003 web sp1 and I keep getting the following error:- Error In: http://www.mywebsite.org/WebResource.axd?d=5WvLfhnJp5Lc8WhQSD4gdA2&t=632614619884218750 -------------------------------------------------------------------------------- System.Security.Cryptography.CryptographicException: Padding is invalid and cannot be removed. at...
3
6477
by: N. Spiker | last post by:
I am attempting to receive a single TCP packet with some text ending with carriage return and line feed characters. When the text is send and the packet has the urgent flag set, the text read from the socket is missing the last character (line feed). When the same text is sent without the urgent flag set, all of the characters are read. I'm reading the data using the blocking read call of the network stream class. The .NET...
2
1979
by: rkgarimella9 | last post by:
Friends, i'm facing with a severe problem while coding an windows application. the problem is that i'm using a usercontrol consisting of three labels upon which three images are placed. the problem is when i'm attempting to draw a line from that usercontrols one of the labels image to the other similar control, the line is getting drawn, but the line is being drawn from the behind of the control, but its not coming on top of the control....
4
1913
by: ashasivan | last post by:
Hi, Please help me as soon as possible for the following problem. It is very very urgent. I have an XML file as follows: <?xml version="1.0" standalone="yes"?> <Employee> <em name="Asha" id="1"> <details>456</details>
2
2378
by: itsvineeth209 | last post by:
My task is to create login control without using login control in tools. I shouldnt use sqldatasource or any other. I should use only data sets, data adapters and data readers etc. U had created table login with fields username(varchar(50)), password(varchar(50)), firstname(varchar(50)), lastname(varchar(50)). U had to display username , first name, last name in default.aspx page after login. One more condition is that, if user fails login...
0
9519
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10439
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10215
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9043
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6783
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5437
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3727
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.