bind

ASP.NET ObjectDataSource Binding Automatically to Repeater - Possible?

Hi, I have a Question class: class Question { public int QuestionNumber { get; set; } public string Question { get; set; } public string Answer { get; set; } } Now I make an ICollection of these available through an ObjectDataSource, and display them using a Repeater bound to the DataSource. I use <%#Eval("Question")%> t...

Automated naming of AF_UNIX local datagram sockets?

I'm implementing a simple service using datagrams over unix local sockets (AF_UNIX address family, i.e. not UDP). The server is bound to a public address, and it receives requests just fine. Unfortunately, when it comes to answering back, sendto fails unless the client is bound too. (the common error is Transport endpoint is not conne...

Fixed point combinators in C++

I'm interested in actual examples of using fixed point combinators (such as the y-combinator in C++. Have you ever used a fixed point combinator with egg or bind in real live code? I found this example in egg a little dense: void egg_example() { using bll::_1; using bll::_2; int r = fix2( bll::ret<int>(...

Dynamically bind data to dropdownlist in asp.net mvc

Hi, How to dynamically bind data to <%Html.Dropdownlist.... in asp.net MVC? Regards, Ambika ...

Internal DNS configuration woes

Alright, I am going to state up front that this question may be too involved (amount of detail not complexity) for this medium. But I figured this was the best place to start. I am attempting to setup a proof of concept project and my BIND configuration is my first big hurdle. I want to setup 3 DNS servers on 3 physical boxes. None o...

Any python libs for parsing Bind config files?

Any python libs for parsing Bind config files? Basically something that will aid in adding/removing zones and records. This needs to work even if someone modifies the config by hand so overwriting the configs every time is not a solution. ...

jQuery Event Keypress: Which key was pressed?

With jQuery, how do I find out which key was pressed when I bind to the keypress event? $('#searchbox input').bind('keypress', function(e) {}); I want to trigger an submit when ENTER is pressed. [Update] Even though I found the (or better: one) answer myself, there seems to be some room for variation ;) Is there a difference betwee...

How to bind a click event on a recently added <a> tag in jquery

Hello. I have 6 links on a page to an mp3. The plugin I installed replaces those links with a swf and plays that mp3 inline. The problem I had was that it was possible to activate all 6 links and have all audio playing at once. I solved that problem (I feel in a clumsy novice way though) by catching the < a > tag before it was replaced...

How to manage a DNS server remotely?

I whant to make a web interface on a server that will manage a few dns servers on another servers. How can i remotely manage a bind dns server programmaticly ? I would like to add/edit/delete zones. I see that there is rndc but that only allows reloading of zones and not adding/deleting. I could NFS mount zones from dns servers and e...

Is std::map + std::tr1::bind + standard algorithms worthwhile?

This is a follow-up to my question from yesterday. I have Scott Meyers' warning about write-only code on my mind. I like the idea in principle of using standard algorithms to access the keys or values of a std::map, but the syntax required is a little baroque IMHO. Let's say I want to dump all the keys of a map to a vector. Given fol...

Show HH:mm 24H format in TemplateField using text property

Hi there, im trying to show a 24 hours format using this line: Text='<%# Bind("Appointment", "{HH:mm}") So how it'll be formated for showing for example 16:40 instead 4:40 ? thanks in advance ...

Lazy binding functions to multiple events with jQuery

Here's the scenario: I have a set of buttons that I want to bind to corresponding functions when clicked. The ids of these buttons are the same as the names of their corresponding functions. I could do this: $("#kick").click(kick); $("#push").click(push); $("#shove").click(shove); But I'm lazy and would like to do this more lazily (as...

gtk.Builder, container subclass and binding child widgets

I'm trying to use custom container widgets in gtk.Builder definition files. As far as instantiating those widgets, it works great: #!/usr/bin/env python import sys import gtk class MyDialog(gtk.Dialog): __gtype_name__ = "MyDialog" if __name__ == "__main__": builder = gtk.Builder() builder.add_from_file("mydialog.glade"...

Configuration of BIND DNS server, I'm lost...

I hope you'll forgive me for thinking that configuring a DNS server would be easy. It turns out it is quite hard... especially if you never did it before. To recap a little, I previously asked if someone could recommend a personal DNS server for Windows XP for use in a development project. My basic wish is to host a DNS server that rep...

1 A-record for every subdomain (10000+); any potential issues? Any other solution?

Most solutions I've read here for supporting subdomain-per-user at the DNS level are to point everything to one IP using *.domain.com. It is an easy and simple solution, but what if I want to point first 1000 registered users to serverA, and next 1000 registered users to serverB? This is the preferred solution for us to keep our cost d...

What are valid characters for a DNS Zone file and how can I sanitize user input?

I'm working on an interface to allow our clients to update their DNS on their own. I have 2 questions: What constitutes valid a valid host and target records? (A, CNAME, MX, TXT) i.e. if the user enters ........ for the host and target the DNS server won't like that. Is there a regex I can use to sanitize user input? BTW it is BIND...

Jquery bind several functions to one element

Strange, is there no possibility to put several binds in jquery, on one element? $('input').click(clickfn).click(clickfn) I am using 1.3.2 function clickme() { alert('click me') } $('.click', mod).bind("brrr", clickme).bind("brrr", clickme) .click(function() { $('.click', mod).trigger("brrr"); }); This is not worki...

SQLServer: How To bind fixed values to Column?

Say I defined a char column Type. I want to strict its value to say for example (Black, White, Red, Blue) Only... How can I do that?? All i know, this is easy in Access :P ...

C++0x, How do I expand a tuple into variadic template function arguments?

Consider the case of a templated function with variadic template arguments: template<typename Tret, typename... T> Tret func(const T&... t); Now, I have a tuple t of values. How do I call func() using the tuple values as arguments? I've read about the bind() function object, with call() function, and also the apply() function in diffe...

Jquery each loop not working

I'm a newbie to jquery, but am trying to use it in my project. I'm trying to loop through all the links inside #rate_box and add a click event to them. This click event will post some data to an external php script, and then it should unbind the click events on all of the links (so people cannot rate twice in quick succession.) Then it s...