dymamic

How to share web content between eclipse projects

While the J2EE module reference feature allows your to create common Java library projects, I can't find a neat way to do this for web content. I have common JSPs, CSS files, JavaScript libraries and even descriptor fragments that I would like to use across a number of Dynamic Web Projects, so that these artefacts are edited i only one...

jQuery plugin show image

I generate a HTML page with the links to images from a directory. First I was thinking to load/display all the images and then to hide them using jQuery .hide() When a user will click to a image I'll display that image, but I hope you can offer me a better approach. It's possible to load/show a image, only when the user clicks to a li...

Dynamicly added Controls [e.g Button] : How to add events and Access

Hi to all, At my program i dynamicly add Buttons to my form { ... Button bt = new Button(); bt.Text = "bla bla"; bt.MouseClick += new MouseEventHandler(bt_MouseClick); myPanel.Controls.Add(bt); ... } void bt_MouseClick(object sender, MouseEventArgs e) { TabPage _tab = new TabPage(); _tab.Text = ??? // I w...

object not found error with dynamic web forms with (jquery) javscript script

In a normal aspx page I've set up a jquery tab system. When a particular tab shows up I wire up an ajax call to get another html page with the following content. It is simply a form with some javascript inside of it. <!-- demo.htm --> <form method="post" action="post.aspx"> <div id="fields"> Class: <input id="txtclass" name=...

[dynamic] Different behaviours between .NET 4.0 beta 2 and last release of .NET 4.0 !

Hi. I've identified a difference of DLR between .NET 4.0 Beta 2 and the last release of .NET 4.0. In .NET 4.0 Beta 2, this code perfectly works at runtime : var dateTimeList = new List<DateTime>(); dynamic myDynamicObject = dateTimeList; object value = DateTime.Now; myDynamicObject.Add(value); Now, with last release of .NET 4.0...