Can we use http handlers to upload a file in asp.net?
Answers were Sorted based on User's Feedback
Answer / sridhar
Yes we can use http handlers. User of this will enable us
to upload more than a default 4mb file and this also useful
to generate a progressbar when uploading a larger file.
this is also useful to post file directly to disk instead
of first to IIS from there to Disk.
Is This Answer Correct ? | 4 Yes | 0 No |
Describe and In Process Vs Out of Process component. Which is faster?
what is meant by sitemapnode ?
When working with ASP.Net server controls, it is important to use the right event handlers to capture the event for the application to function properly. What event would you use to capture the selection of a new item in a DropDownList control? a) The Click event. b) The SelectionChanged event. c) The SelectionIndexChanged event. d) The ChangedSelection event.
For a webapplication if i want to gice access controls like admin,users how can i give security like rolebased?
What is OSI layer? Explain different layers.
What is the result when the Web Form containing the following line is complied and executed? <asp:Button id=?thebutton? onClick=?theEvent? /> a) The button control is created; theEvent is the click event handler. b) Compiler error; the control must be set to runat=?server?. c) Compiler error; onClick is not a valid attribute. d) Runtime Exception; the control must be set to runat=?server?.
What is the difference between session and application?
where is declare global variable in asp.net and what is use of global variable
version information of assembly consist of _________ values.
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
What is enableviewstatemac in asp net?
Suppose, I have 3 pages, Page1.aspx, Page2.aspx, Page3.aspx. All pages are in diff. server. When user req. for a page, Page1.aspx opens Ist & a session established. If user req. for IIn page, second session established. Similarly, 3rd session established if user req. 3rd page. In this scenario, tot. 03 sessions are established. How we can minimize it so that it will work with only one session?