473,624 Members | 2,615 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HTMLInputfile problem with VS2003

I am using VS 2003 and the accept parameter neither comes
up in intellisense nor restricts the file types. Is this a
bug?
This is how the form is defined -
<form id="frmBreaks" method="post" runat="server"
enctype="multip art/form-data">

This is how the control is defined -
<INPUT id="inpFile1" type="file" name="inpFile1"
runat="server">

If I try to add the 'accept' property I have to do it by
hand as intellisense doesn't include it. When I do, I get
a red wavy line and the error "'Could not find any
attribute 'accept' of element 'input'".

If I add the property programatically , it seems to be
accepted, but it still doesn't restrict file type.

Anyone got an idea?

TIA, John

Nov 18 '05 #1
5 1124
Hi,

even if VS.NET shows that as red line, it doesn't prevent from using it.
VS.NEt's Intellisense ain't perfect either. Just ignore the message.

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
"John Mason" <an*******@disc ussions.microso ft.com> wrote in message
news:06******** *************** *****@phx.gbl.. .
I am using VS 2003 and the accept parameter neither comes
up in intellisense nor restricts the file types. Is this a
bug?
This is how the form is defined -
<form id="frmBreaks" method="post" runat="server"
enctype="multip art/form-data">

This is how the control is defined -
<INPUT id="inpFile1" type="file" name="inpFile1"
runat="server">

If I try to add the 'accept' property I have to do it by
hand as intellisense doesn't include it. When I do, I get
a red wavy line and the error "'Could not find any
attribute 'accept' of element 'input'".

If I add the property programatically , it seems to be
accepted, but it still doesn't restrict file type.

Anyone got an idea?

TIA, John

Nov 18 '05 #2

"John Mason" <an*******@disc ussions.microso ft.com> wrote in message
news:06******** *************** *****@phx.gbl.. .
I am using VS 2003 and the accept parameter neither comes
up in intellisense nor restricts the file types. Is this a
bug?


See
http://msdn.microsoft.com/workshop/a...input_file.asp
It doesn't list this parameter, so I take it IE doesn't handle it.

I seem to recall that this (useful!) parameter *is* in the HTML
specification, but that
few browsers support it (yet?).

Hans Kesting
Nov 18 '05 #3
Ah yes, very true, in MSDN docs there is that "There is no functionality
implemented for this property unless defined by the author"

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist

"Hans Kesting" <ne***********@ spamgourmet.com > wrote in message
news:ef******** ******@TK2MSFTN GP10.phx.gbl...

"John Mason" <an*******@disc ussions.microso ft.com> wrote in message
news:06******** *************** *****@phx.gbl.. .
I am using VS 2003 and the accept parameter neither comes
up in intellisense nor restricts the file types. Is this a
bug?
See

http://msdn.microsoft.com/workshop/a...input_file.asp It doesn't list this parameter, so I take it IE doesn't handle it.

I seem to recall that this (useful!) parameter *is* in the HTML
specification, but that
few browsers support it (yet?).

Hans Kesting

Nov 18 '05 #4
Well, thanks for the responses guys but I'm still unable
to filter.
When I click the browse button on the control I just
get 'Files of Type: All Files (*.*)'
Am I to assume then that IE6 doesn't support this
functionality?
-----Original Message-----

"John Mason" <an*******@disc ussions.microso ft.com> wrote in messagenews:06******* *************** ******@phx.gbl. ..
I am using VS 2003 and the accept parameter neither comes up in intellisense nor restricts the file types. Is this a bug?
See
http://msdn.microsoft.com/workshop/a...tml/reference/

objects/input_file.aspIt doesn't list this parameter, so I take it IE doesn't handle it.
I seem to recall that this (useful!) parameter *is* in the HTMLspecificatio n, but that
few browsers support it (yet?).

Hans Kesting
.

Nov 18 '05 #5
Hi,

I believe you should try to do that filtering at the server.

Via the PostedFile.Cont entType property of HtmlInputFile you can try to
check the type at the server.

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
<an*******@disc ussions.microso ft.com> wrote in message
news:07******** *************** *****@phx.gbl.. .
Well, thanks for the responses guys but I'm still unable
to filter.
When I click the browse button on the control I just
get 'Files of Type: All Files (*.*)'
Am I to assume then that IE6 doesn't support this
functionality?
-----Original Message-----

"John Mason" <an*******@disc ussions.microso ft.com> wrote

in message
news:06******* *************** ******@phx.gbl. ..
I am using VS 2003 and the accept parameter neither comes up in intellisense nor restricts the file types. Is this a bug?


See
http://msdn.microsoft.com/workshop/a...tml/reference/

objects/input_file.asp
It doesn't list this parameter, so I take it IE doesn't

handle it.

I seem to recall that this (useful!) parameter *is* in

the HTML
specificatio n, but that
few browsers support it (yet?).

Hans Kesting
.

Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2947
by: R Reyes | last post by:
I am coding a forum and am having problems passing around the attachment file (as an HtmlInputFile) from page to page. Sometimes the users may want to preview their posts with the attachment specs (filesize, content-type, etc..) before submitting. i have tried storing it in a session like so: HtmlInputFile uploadFile = new HtmlInputFile(); Session = uploadFile.PostedFile; Then retrieving it, though I can't seem to figure out if the...
1
2122
by: Newbie | last post by:
i have a c# asp.net webform that has an HtmlInputFile and a listbox (to hold the filenames to be uploaded). but HtmlInputFile.PostedFile and HtmlInputFile.Value are readonly properties. i have to populate the listbox prior to showing it to the user. the listbox will already contain items (old files) in it when the user first see it. i am trying to add files to the HtmlInputFile collection programmatically before letting the user add or...
2
1958
by: Skwish | last post by:
Hi, I have a page with a htmlInputFile that is working fine. However, if I go to another page, and then go back to the page with the htmlInputFile, I get the following error Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.
5
2897
by: shimonsim | last post by:
Hi, I need to upload pictures from client machine and I am using HtmlInputFile control I set validator to make sure that file has correct expention but if one of the files has incorrect extention all information in other controls gets lost. I can't find the way to save pathes and then assign them to control - the Value property is read only . Besides this I need to create conformation page before subtission of the files. On the...
5
3102
by: Grant Harmeyer | last post by:
I have an application that uses FreeTextBox 2.0 (http://www.freetextbox.com). FreeTextBox is a rich text editor that behaves similarly to MS Word. The FreeTextBox control has a button to insert images (just as you would with MS Word) and it works beautifully. The problem is that when you include an image with the rich text editor, the image path is the local path on the client. I have written a method that examines the text for <img> tags,...
2
1666
by: Augusto Cesar via DotNetMonster.com | last post by:
Hi, I want to customize the HtmlInputFile. I wanna something like an image button to play the "browse" button hole and hide the textbox. Is that possible? I also have tried to hide an HtmlInputFile in my page and added some javascript code to a button to fire the click() event of the HtmlInputFile. It worked for a moment, but when the submit button is clicked the HtmlInputFile looses its value. This solution was described in the...
3
4730
by: UJ | last post by:
Guys, I know this isn't the appropriate place to post this because it's HTML not ASP.Net but I need some guidance. I have a web page with an HTMLInputFile on it. The person enters the stuff, that's all great. They go to the next page and I allow them to click a button to go back a page to change values. When I go back one page, I want the HTMLInputFile to be filled in with the previously loaded value (which I have saved somewhere) but...
7
1755
by: Buddy Ackerman | last post by:
I created this class Public Class HTMLFileInput : Inherits System.Web.UI.HtmlControls.HtmlInputFile Public Property Data As String Get Return ViewState("HTMLFileInput.Data") End Get Set (ByVal Value As String)
3
4555
by: Dave Adler | last post by:
Is there any way to retain the value of an HtmlInputFile control through a postback? I do some server side validation on the page when it is submitted and if an error occurs on the page the HtmlInputFile control value is blank after the postback. The EnableViewState for the control is set to true. I can't put the postedFile.filename value in a hidden control and then put it back into the HtmlInputFile control on postback because the...
0
8685
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8341
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8490
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7174
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5570
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4084
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4184
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1489
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.