what is the basic difference between fileupload webcontrol and file input html control .
Printable View
what is the basic difference between fileupload webcontrol and file input html control .
One is a server control and one is an HTML control, so you wouldn't be able to control what happens to it quite as easily within your code? That would be my guess....
Jim P.
What's the difference between an <input type="button"> and <asp:Button> ?
They render as the same thing, but has more configurable properties in the codebehind, among other things.
Quote:
Originally Posted by mendhak
that what i meant to ask .
can i know specifically about these "more configurable properties" .
Place a button on a web page and name it btn1.
Go to the codebehind.
In the page load event, type btn1. (with the dot).
An intellisense window shows up. There's what you can 'configure' and work with. You can dynamically/conditionally add attributes to it, styles, and so on.