Yes. Historically the most basic form of setpoint control is to turn the output on when below the setpoint and turn it off as soon as you go above setpoint (for heating or other direct acting system). If using a discrete output with a relay, contactor, or solenoid valve for steam or hot water, to do it this way can cause the output to chatter on and off and wear out the valve or contactor. So to avoid that you can add some hysteresis (turn on below 150, but don't turn off till you get to 151, say) or a timer (once you've turned off the output, you can't turn it back on for 30 seconds or something). If you already have analog, the equivalent would be as you say to set the output to 100% or 0%. Setting it to different values depending on the error would be a basic form of proportional control.
I assume the dryers are heating air which is then blown on the parts. If that's the case, you may still want to go with PID as the air temperature can change a lot faster than the temperature of liquid in tanks.
A couple points:
First, one of the main reasons for doing on/off control as I've detailed is to save money on the control parts if the thermal inertia of the load is such that short timebases aren't needed, but if you already have the parts needed for proportional control, you might just want to continue down that path. Programming and tuning will require more effort, so there is still some reason to go with on/off.
When heating liquids in tanks, remember safety! You should have low liquid level detection, so the heater isn't sitting there glowing if you cook off all the liquid, and/or an overtemperature sensor bonded to the heater. These can certainly be wired into the PLC, so you can take appropriate control action, and so you can show the operator why the heater isn't on anymore, but you should probably also have a hardwired failsafe interlock for your safeties that physically prevents the heater from energizing even if the PLC fails to properly execute the interlock.