Apparently, while X is running you see nothing on either display if you start X manually or by using xdm(1).
On OpenBSD, multiple display management is best handled with xrandr(1). However, using it requires X to be running and you must be able to see, unless you want to type blindly.
Start an X session with only a single monitor physically connected -- poweing off one monitor is insufficient, you must only have a single monitor connected to the system.
Connect the second monitor, and turn it on.
Can you still see the X session on the first monitor? If so, you can use xrandr(1) to configure the displays as you wish. Once you have the displays configured as you wish, you can add them to your ~/.xinitrc script, or add them to xdm(1)'s /etc/X11/xdm/Xstartup script if you wish to use xdm(1) for session management.
I have an external monitor I attach to a laptop's DisplayPort that I set to a non-default size, and extend "above" my laptop screen. My simple script to enable the configuration is shown below.
#!/bin/sh
xrandr
xrandr --output DP1 --mode 1280x720 --above LVDS1
I use two xrandr commands, as without the first, the second fails to find an active DisplayPort device. I suspect a race condition, but do not actually know the root cause and this particular circumvention works for me.
Edited for clarity