rednet cable isn't a thing. I assume you mean network cable, these do not conduct redstone. You need a bundled cable mod or just plain redstone will do for this.
now. As for actually using a monitor. You need to use it as a peripheral, there are several guides for that but I'll drop some quick code in here anyway.
local monitor = peripheral.wrap("right")
This is the important part. All I have done is make a local variable called monitor, peripheral.wrap("right") then takes the peripheral on the right hand side of the computer and stores it in monitor so we can use it. I recommend this line goes near the beginning of your code.
Now. Once you have your monitor, you can use all functions of the term API on it:
http://computercraft.info/wiki/Term_(API)So lets print "Hello World" on the monitor.
monitor.setCursorPos(1,1)
monitor.write("Hello World")
if you want to do the above on 2 monitors:
local monitor1 = peripheral.wrap("left")
local monitor2 = peripheral.wrap("right")
monitor1.setCursorPos(1,1)
monitor2.setCursorPos(1,1)
monitor1.write("Hello World")
monitor2.write("Hello World")
print(), write(), term.setCursorPos() etc will all effect the computer screen as normal and leave the monitor untouched. This allows you to have one interface running on the computer and another on the monitor. However an alternative to the above method is to use a terminal redirect. This is actually what the monitor program does in computercraft. Create your monitor object as above. Then do this:
term.redirect(monitor)
Whenever you use the term API on your computer, print or write it will all be done on the monitor instead of the computer screen. term.restore() undoes this. Its actually really annoying so don't bother doing it.
Another neat trick you can do:
monitor = peripheral.wrap("top")
local function write(input)
term.write(input)
monitor.write(input)
end
now if you just call write("hello") it will simultaneously be written to the monitor and computer at once.