Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
2k views

GWT Widget.addHandler

I am trying to utilize Widget.addHandler(). However, the handler never gets called. Below is my sample code. What do I need to change to fix this? My Handler Implementation: public class ...
2
votes
1answer
224 views

500 Internal Server Error on Apache/PHP AddHandler wrapper

I'm trying to create a wrapper/handler that will be called on the Apache server whenever someone requests any PHP script inside of a directory. That way I can authorize users for the entire directory ...
2
votes
2answers
299 views

How do I add parameters to an event handler in javascript?

and thanks for looking. Currently I am implementing code from this example. In my aspx file, I have Label1 and Textbox1 defined. In my aspx.cs file, I am setting the Label1.Text property to a random ...
1
vote
1answer
133 views

VB.NET RemoveHandler & Anonymous Methods

How do I use RemoveHandler with anonymous methods? This is how I add a handler for MyEvent event of the class MyClass AddHandler MyClass.MyEvent, Sub() ... ...
1
vote
0answers
99 views

Problem with handling MouseDownEvent of ToggleButton in Silverlight 4

I'm trying to handler MouseDownEvent for this control by adding a hook to RootVisual: Application.Current.RootVisual.AddHandler(MouseLeftButtonDownEvent, ...
1
vote
1answer
204 views

What is the difference between AddHandler and AddType in htaccess files

Can someone explain what the difference is between AddType and AddHandler in htaccess files? I want to make the settings such that I can have a javascript file (.js) be run through the server as ...
1
vote
2answers
700 views

Create a dynamic control and AddHandle WITH Values/Brackets

it seems that adding for example a button Dim myButton as New Button and then addHandler to mySub("lol", 255) is not possible. Where mySub is Shared Sub MySub(byRef myString as string, myInteger as ...
1
vote
2answers
475 views

AddHandler vs. Handles - what is the difference?

Understood that Handles is only a way to add in constructor the AddHandler, but in general these two are equivalent. True?
0
votes
1answer
43 views

HTML files as PHP in Nginx

For web servers using PHP as apache module: AddType application/x-httpd-php .html .htm For web servers running PHP as CGI: AddHandler application/x-httpd-php .html .htm I have an Nginx server ...
0
votes
1answer
60 views

Does an AddHandler require parameters?

I'm trying to add a handler, but as soon as I'm targetting a method that has parameters, the handler fails. This is the simple code: AddHandler App.Current.RootVisual.MouseLeftButtonUp, ...
0
votes
0answers
59 views

How to addhandler for dynamic textbox?

I used this method but it did not work :- For Each c As Control In Me.Food.Controls If TypeOf c Is TextBox Then AddHandler c.TextChanged, AddressOf Button1_Click End ...
0
votes
2answers
2k views

VB.NET - Problem with Addhandler, button.click not firing

I am experiencing a problem with buttons and addhandler. It only works if I use Addhandler Button1.click, AddressOf... in Page_load, but if I create the button dinamically in one of the Sub, the event ...
0
votes
4answers
367 views

Where to “destroy” Handlers in VB.NET classes?

I have some class (a user control) MyUserControl that rises events. I use it in a form MyForm, in that, for some reasons I am forced to use AddHandler instead of WithEvents<>Handles pair. I ...
0
votes
1answer
443 views

400 Bad Request on Apache/PHP AddHandler wrapper

I'm trying to create a wrapper/handler that will be called on the Apache server whenever someone requests any PHP script inside of a directory. That way I can authorize users for the entire directory ...
0
votes
1answer
463 views

Event handler not firing using AddHandler

I have a form with about 40 checkboxes. Once a checkbox is checked, the div control's property should be changed from "none" to "block" or vice versa. I don't get an error, but the checkedchanged ...
0
votes
1answer
180 views

Question regarding missing RemoveHandler in WPF application function

We have a few scenarios in our WPF/MVVM application where a window is being instanciated and opened within the confines of a method. Very simplistic example: Private Sub subOpenWindow Dim ...
0
votes
1answer
2k views

AddHandler not working?

I can't figure out why my addhandler is not firing? In the Sub "CreateTagStyle" the AddHandler is not firing when the LinkButton is clicked Is there some reason that addhandlers can't be added at ...
0
votes
1answer
597 views

Visual Studio shortcut to auto-add event delegate methods

In C# adding event handler methods is very easy. You just type "object.event +=" and then press tab twice. Is there anything like this for VB projects? Note: This is for dynamically created controls ...
0
votes
1answer
1k views

How do I apply AddHandler using OnCommand in ASP.NET

I've been racking my brain trying to get this to work. My event for my LinkButton isn't firing. I'm figuring that it has SOMETHING to do with ViewState and that the button is not there when it tries ...
0
votes
4answers
3k views

Send parameter to addhandler?

I have a button in a grid that I created programmatically. The button edits some data in a table using data in a hidden column of the grid that the button is in. Normally I send a hidden field the row ...
-1
votes
3answers
404 views

Apache AddHandler: Run ASP code as PHP

I'm running XAMPP. Is there a line I can add to .htaccess or http.conf to make ASP be parsed and handled as PHP pages? I had it setup before but can't remember how to do it. What I've tried so far ...