label for input file ie下报拒绝访问

1. label  for 绑定元素响应事件,例如 点击label可以执行绑定的input 的button的事件,

 

<label for="large_icon_url" class="btn_up file-up-btn">上传大图标</label>
<input type="file" accept="image/*" class="input_f pics" maxnums="1" name="large_icon_url" id="large_icon_url">

 label实现了好看的效果,但是由于ie安全限制问题,会拒绝非file浏览上传文件的访问,所以处理方法应该是让file附在lable的上面,然后是透明处理,直接点击file即可。

 

2. 转上传文件的隐藏处理:

IE input file隐藏不能上传文件解决方法

HTML/CSS  2013-05-30  上传,IE,input,file

又是IE的一个问题,近来是跟IE浏览器磕上了,这个问题发现不少人也遇到过,实在蛋疼。但今天这个不能算是一个bug,因为IE可能是从安全角度上考虑结果导致的。一步步来解读。

普通上传例子

首先普通的文件上传呢,很简单,前端代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
< html >
     < head >
         < meta charset = "utf-8" />
         < title >file标签隐藏</ title >
 
     </ head >
     < body >
         < form action = "http://192.168.1.99/upload/upload.php" method = "post" enctype = "multipart/form-data" >
             < input onchange = "document.forms[0].submit();" type = "file" name = "file" />
         </ form >
     </ body >
</ html >

upload.php代码:

1
2
3
echo '<pre>' ;
print_r( $_FILES [ "file" ]);
echo '</pre>' ;

其实就是打印获取到的文件信息。我们测试一下,选择文件后,提交到PHP页面结果如下:

Array
(
    [name] => 7.jpg
    [type] => image/jpeg
    [tmp_name] => /tmp/php0VkjPG
    [error] => 0
    [size] => 36297
)

能正确获取文件信息,只需要cp下就能保存。

用别的按钮替代file标签

但是默file标签很难看,而且每个浏览器下都有很大差距。因此我们基本都把真正的file标签给隐藏,然后创建一个标签来替代它,比如我们创建一个a标签来替代它,隐藏file标签,单击a标签时触发file标签click弹出选择文件窗口。最终页面代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
< html >
     < head >
         < meta charset = "utf-8" />
         < title >file标签隐藏</ title >
 
     </ head >
     < body >
         < form action = "http://192.168.1.99/upload/upload.php" method = "post" enctype = "multipart/form-data" style = "display:none;" >
             < input onchange = "document.forms[0].submit();" type = "file" name = "file"  />
         </ form >
 
         < a onclick = "document.forms[0].file.click();" href = "javascript:void(0);" >上传文件</ a >
     </ body >
</ html >

页面上就只看见a标签

点击“上传文件”弹开选择文件的窗口

选择文件后,正确传送文件信息到服务器

这样就完成文件上传了,这个操作在Chrome,FireFox下都正常,IE下有问题。

IE不能上传文件

IE下也能正常弹开选择文件的窗口

但选择文件后,却不能上传,同时还报一个“拒绝访问”错误,如截图中红圈部分

解决IE下不能上传文件的问题

其实这是IE安全限制问题,没有点击file的浏览按钮选择文件都不让上传,既然IE非得要亲自点击,我们可以变通一下,让自定义按钮存在又能真正点击到file标签。解决方案是让file标签盖在a标签上,但file是透明的,这样用户看到的是a标签的外观,实际点击是file标签。如图:

最终页面代码如下:

1
2
3
4
5
< a style = "position:relative;display:block;width:100px;height:30px;background:#EEE;border:1px solid #999;text-align:center;"  href = "javascript:void(0);" >上传文件
     < form action = "http://192.168.1.99/upload/upload.php" method = "post" enctype = "multipart/form-data" >
         < input style = "position:absolute;left:0;top:0;width:100%;height:100%;z-index:999;opacity:0;" onchange = "document.forms[0].submit();" type = "file" name = "file"  />
     </ form >
</ a >

页面:

需要注意几个问题
1、取消a标签onclick事件,因为实际上已经不需要a标签的onclick触发file的click了,而是直接就点击到file;
2、file标签不需要再设置display:none隐藏,而是通过opacity:0让它完全透明,实际它是浮在a标签之上
3、file标签设置position:absolute后要给left:0、top:0,否则file标签不会吻合覆盖a标签导致点击按钮的时候点不到file标签

我们再来测试一下:

点击按钮:

选择文件:

上传成功!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1 , WinLocaleConvert.zip<br>This program shows the international settings of the country you select such as Format Currency, Date Format, Day Name, Month Name...<END><br>2 , netstuff.zip<br>This program queries the network and shows the Domains/Servers/Workstations structure. It also shows the users of each Server or Workstation and can send messages to the selected PC. This programs works only on a Windows NT 4.0 Machine!<END><br>3 , projectgroupx.zip<br>You may use this code as a learning tool only. The application may not be sold in any shape or form. So 下载 the code and get involved with the News Group, help us to help you.<END><br>4 , urllink.zip<br>User control to launch web browser and jump to URL.<END><br>5 , vbftp.zip<br>Sample application that implements FTP connection, 下载, and upload using the WinInet FTP API from Visual Basic<END><br>6 , browser.zip<br>Simple web browser using the Microsoft Internet Control.<END><br>7 , ftp.zip<br>Complete FTP application.<END><br>8 , chatclnt.zip<br>Client side of an internet chat program<END><br>9 , chatserv.zip<br>Server side of an internet chat program<END><br>10 , hlink.zip<br>Is a control that you can use to link your program to a web site.<END><br>11 , Popmail.zip<br>Checks your email!<END><br>12 , telnet.zip<br>Telnet Application<END><br>13 , validip.zip<br>Validate an IP address<br>14 , dmvbtest.zip<br>This is a complete email sending client in Visual Basic<END><br>15 , CarlosChatApp.zip<br>This is a program that enables two people to chat across the internet. You must know each others IP address and have an understanding of ports<END><br>16 , inteferorprovider.zip<br>program which communicates with each other and allows one computer to perform a task on the other<END><br>17 , itimer.zip<br>Internet Timer. Also calculates the cost of the call. Can AutoDetect Phone call charges from the time and date.<END><br>18 , tlsNet.zip<br>TILISOFT Internet ActiveX Controls - Retrieve HTML pages from the Net - Post data to HTTP server <END><br>19 , pingmon.zip<br>A ping monitor for the network administrator. Based on API code <END><br>20 , webbrowser.zip<br>Easily build your very own custom web browser,using the web browser object<END><br>21 , StealthSRC.zip<br>StealthMail 2.1 - full SOURCECODE for the StealthMail 2.1 program. Uses only VB6 code, and NO API calls!<END><br>22 , Worldmeet.zip<br>This is the source code for a client and server chat program. <END><br>23 , RemoteFileExp.zip<br>This utility allows you to remotely reboot, log-off, 下载 files, delete files,luanch applications, auto navigate a web browser and view desktops via TCP/IP<END><br>24 , Lagmeter.zip<br>This Will Allow You To See A Visual Representation Of The Latency of Your Local Machines IP. A.k.a Lag Meter<END><br>25 , mailcheck.zip<br>Mail Checker Sample Application. Create your own POP3 client to retrieve e-mails from mail server. Source code + tutorial.<END><br>26 , chat.zip<br>This code shows you how to creat a local network chat room so that you and your friends can have a chat room which nowone else can enter<END><br>27 , news.zip<br>Demonstrates how to downlaod text from a webpage without a browser open. This could be used for what i used it for in the past for a news program<END><br>28 , url.zip<br>Worldwide list of URL extensions by country<END><br>29 , EmailChk.zip<br>This Application checks for unread email using outlook. MS Agent will popup to announce how many unread mails you got. This also checks sub-folders on your inbox. Configuration is added to choose which MS Agent to use and the Time interval use to check for mails<END><br>30 , wsc_ftp_client.zip<br>FTP Client Sample Application. It was built with MS Winsock Control. It is a complete FTP client that allows you to browse FTP directories, 下载 and upload files, resume broken file transfer, create and remove directories, delete and rename files. All the operations execute in an asynchronous mode with the progress indication . <END><br>31 , MultiServer.zip<br>This is real simple source code for a Multi-Client server, it allows upto 65535 users to connnect to your server,via winsock control- it can be customised to become any server, such as IRC, FTP. plus all the functions are in their to relay data and store information on each users accounts. <END><br>32 , GuardDuty.zip<br>Lets you create your very own Cyber Sitter or Net Nanny Type software- it blocks access to sites based on keywords such as "sex","hack" or "security" alternatively whatever you want ! - it's the long awaited project version of previously released WEB ADDRESS SPY! <END><br>33 , whisper.zip<br>Complete LAN chat program<END><br>34 , vbtelnetserver.zip<br>Telnet Server. Allows multiple connections, uses Access DB to store Access Control Lists/Users<END><br>35 , CasperEdit.zip<br>Almost complete HTML editor with many functions. This is only a pre-released version so some stuff doesn't work.<END><br>36 , browser0516.zip<br>Its a fully functional web browser<END><br>37 , lovevirusCleaner.zip<br>With the onslaught of the Love Bug virus in the last 24 hours, many of us had to provide solutions prior to the Virus Protection companies. This VB6 code cleans the ILOVEYOU virus from systems<END><br>38 , shras21.zip<br>Custom Control, that lets you have full control of Dial Up Networking<END><br>39 , FullBrowser.zip<br>: This is A Complete Internet Browser Like IE With More Fuctions Like Bulk mail And Many more. Requires several third-party OCX files including Autocomplete.ocx.<END><br>40 , webpagmaker.zip<br>Web page maker <END><br>41 , vs.zip<br>Viru-Spy. Relays sytem information to your email account. Run on someone else machine to retrieve system info,dial up passwords, bookmarked urls etc etc<END><br>42 , icqp.zip<br>Send ICQ messages from VB<END><br>43 , DekMate2.0.zip<br>All new DeskMate2.0 with added new features like email checking, NT messaging system, movie screen, system tray alerts as well as the old features like, Online Weather, News headlines, Online Horoscopes, Movie Reviews etc.<END><br>44 , TelDialOut1.zip<br>TelDialOut is a program that dials a phone number from an application using the modem. I had observed the large number of postings on various forums about this topic so I have included a well documented application to assist those who would be using this feature in their applications<END><br>45 , TreeViewXML.zip<br>Great example program for programmers learning XML. This program shows you how to use the msxml.dll control, as well as the treeview control. Users must have msxml.dll version 2.0 for binary compatibility.<END><br>46 , CustEditXML.zip<br>Complete VB application that retrieves customer information from an XML script, allows you to make changes to the data, and saves the record using other XML scripts. This is a great example for learning MSXML.dll and TransactXML.dll procedures. <END><br>47 , email1mapi.zip<br>Visual Basic code for Sending email using MAPI control.<END><br>48 , Dan.zip<br>Dan's All purpose masterful program <END><br>49 , metasite.zip<br>this vb code executes a request from metacrawler.com and returns all links results in a TreeView.<END><br>50 , email.zip<br>Sending Email using MAPI control.<END><br>51 , EmailChecker.zip<br>Checks your new mails from mutiple mail servers(yeah it works!!!!!). it switches tray icons on different states & displays the number of new messages (as msn messenger display messages) and plays a WAV file<END><br>52 , urlhist.zip<br>This sample demonstrates how to loop through the history folder of Internet Explorer.<END><br>53 , AdvancedWebBrowser.zip<br>Advanced web browser..something like IE but less options really nice interface..code is very easy to understand..teaches you the basics of using vb.<END><br>54 , iusage.zip<br>NO its not another internet usage monitor its different.Apart from calculating the cost and total time you spend on the net it even reminds you to switch of the net after a time interval which you specify.Check out this cool program.<END><br>55 , dauntless.zip<br>This is an exceptionally good piece of code. One program runs on a machine somewhere, and the other on your machine. You can then send commands to the other machine, take screen snapshots and more... It uses the INET control for all functionality, but you could do the same with the Winsock DLL.<END><br>56 , netcontrol2.zip<br>Following on from the original NetControl by Danny, this little ActiveX/OXC project contains some small modifications and the sourcecode for the control. You can send messages with a client/server type setup.<END><br>57 , al40.zip<br>Apparently, if you use AOL to connect to the Internet and you do not touch it for 45 minutes it will timeout and drop the connection. This little program will ensure that it keeps the connection active.<END><br>58 , yougotmail.zip<br>Kenneth has developed this is a great little application which reads a Microsoft Exchange mailbox and lets you know via playing a .WAV file when you have mail.<END><br>59 , netcontrol.zip<br>This little project is Dannys first attempt at an ActiveX control and its very good. There are two mini projects included here. The first is called SlotDemo and allows you to send messages or data in a client/server type role. Its uses some very clever programming.<END><br>60 , cethernetaddress.zip<br>We found this bit of code somewhere on the Internet a few months ago and tidied it up a bit. I don't know the author's name so cannot give them credit. But basically this sample will return the Ethernet Address of the card in the current machine.<END><br>61 , cnetworkinfo.zip<br>This little demo will return, using Windows API calls, the following: IP Address, Network Username, WorkdstationID, Windows version, build version and service pack info, the windows directory, the PDC name if you are logged onto an NT server and the time <END><br>62 , ccheckduncount.zip<br>If you want to check if there is a RAS/DUN conneciton activ, then this little routine will return true or false depending on whats going on. If RAS isn't installed on the machine, it will crash but otherwise its a great routine. For more information<END><br>63,winskip.zip<br>Using the Winsock Control to get IP Information <END><br>64,opnblank.zip<br>Open a Blank Browser Window <END><br>65,distitl.zip<br>Display the Title of a Page in a Form's Caption Bar <END><br>66,disbrows.zip<br>Disable Input to a WebBrowser Control <END><br>67,lbllink.zip<br>Make a Label Act Like an Internet Link<END><br>68,linkcmbo.zip<br>Link a ComboBox to a WebBrowser Control<END><br>69,navbutns.zip<br>Navigation Buttons<END><br>70,status.zip<br>Show Browser Status<END><br>71,iphost.zip<br>Get Local IP and HostName using WinSock<END><br>72,xmldirviewer.zip<br>This is a sample from an XML implementation I created for my company's Intranet, giving the capability for user maintained content<END><br>73,phone.zip<br>A Cellular Phone Application Uses MSCOMM, Modem and normal telephone lines to make calls. <END><br>74,PhoneDial.zip<br>A Phone Dialing program that play both DTMF Tones and MF Tones using wav files. It does not use A real Phone.<END><br>75,dnslookup.zip<br>Easy DNS Lookup and Reverse Name lookup using qdns.dll (dll vb source is included in zip). For use see included sample ASP page.<END><br>76,Mar_05_2001.zip<br>About myself, i am a computer pro experienced in creating dynamic data driven web sites. About the code, it demonstrates the usage of internet transfer control to 下载 the content from the web.<END><br>77,InstantMessenger.zip<br>A basic Instant Messenger. <END><br>78,WebCapture.zip<br>Just mention the site URL and easily Capture the desired Data, Tag's from that Web Site. Also <br>helps in understanding the use of DoEvents, Error traping and many more features. <END><br>79,destructureur.zip<br>this code analyse DOM of a web document(Document Object Model).<br>Usefull in order to rettrieve all links, images, scripts informations like url, index, absolute index of all HTML objects. <END><br>80,bla.zip<br>This is an Internet Public Chat Application, which is unique. This is for All. I have seen several Internet Chat systems developed but they were not good enough to encourage the Novice programmers understand the complexities of using the Winsock control. This is the Internet Chat System developed using Winsock Control only and no API calls, or any other DLLs. <END><br>81,EmailSystem.zip<br>In this tutorial of 100+ pages, you can get every thing which is mainly related to build a complete web based email system. this artical will cover everthing of SMTP, POP3, MIME and HTTP. <END><br>82,inanny.zip<br>Inanny is a netnanny like clone,u can use inanny to block sites locally.The new version works with netscape(all versions) as well as ie(all versions). <END><br>83,source_build84.zip<br>IRC Client that supports all basic needs of an IRC Client and a bit more. Uses Raw RTF code, so it's very fast displaying text. Also handles IDENTd properly. <END><br>84,Blitz.zip<br>Blitz Chat System is a complete Chat Server and Client application for internet and intranet users. It has facilities like room selection, <END><br>85,QNavigator.zip<br>Q Navigator Ver 1.1 is an updated form of my Web Browser, which has the best features (and more) of all browsers. <END><br>86,atomicclock.zip<br>RJ Soft's AtomicClock (Atomic Clock.Exe) sets your computers Date and Time from an atomic clock via tcp/ip at 12:01 AM every day. Atomic Clock sits in the system tray so you can load it and forget it or click on the icon and tell it to reset the Date and Time. <END><br>86,demooutlook.zip<br>Send Text or HTML Mail(You can join an ONLINE photo). Retrieve all your input box mails and create a new folder. <END><br>87,weather.zip<br>This is a grand application allowing you to get 10 day weather forecasts for almost every region of the world. Also gives you weather imagery maps. Must see. Kind of a big 下载, but I wanted to make sure everything was included. <END><br>88,下载er2.zip<br>Website 下载er.Updated with many new features. <END><br>89,SurfMonitorCODE2.zip<br>OK folks.....this is a better version of the SurfMonitor code. Not only does it have the 'Autodetect' feature, it also manages the registry better and creates log files. The administrator can also apply time and date restrictions on users.... <END><br>90,ThePorter.zip<br>This is an anti-hacker tool I've created. It's much like Lockdown 2000. It sits on your system tray listening for incoming connections on various ports. <END><br>91,SurfMonitorCODE.zip<br>Allows an individual to restrict multiple users to access the users only for a certain amount of time. It also has an 'Autodetect' feature to automatically detect an internet connection and disconnect in case <END><br>92,下载er.zip<br>Just enter the URL of a webspage you want to 下载 and all the links in the webpage will be 下载ed including any image files . The program is still in the development stage . <END><br>93,bmail.zip<br>This software for bulk email for personal and corporate use. The enclosed zip conatains all the codes and readme text. This software uses MAPI and CDO for Windows 9x. <END><br>94,winsock.zip<br>Application demonstrates the use of the VB Winsock control and some of its properties. <END><br>95,HTMLEd.zip<br>A simple HTML editor written in Visual Basic. <END><br>96,emailnotifier.rar<br>This is an application that monitors the local host for IP address changes and notifies a list of people by e-mail if the IP address changes. Both the IP address and the e-mail list are stored between sessions <END><br>97,pbaspediter.zip<br>A Full Advanced ASP/Html Editer with Database, Cookies, includes, sounds, forms, body, Tables wizards and more. (Wizards do html & responce.write) Color coding html. tag inserts, Plugins, Templates, Java codebase, vbscript codebases, full asp codebase Asp Preview on localhost and normal preview and LOTS MORE MUST SEE <END><br>98,Exchange_Viewer.zip<br>You must have Access 2000 installed in order to print. Other than that you should be fine. This will anonymously query an exchange 5.5 or higher exchange server and retrieve The names and email addresses and place them into an access database. This code has many useful examples. <END><br>99,Automatic_Updater.zip<br>UPDATED 11/10/2000 Now With even more options!! This application allows you to check for an updated version of a file or a program via FTP, then 下载 that update if it is available. <END><br>100,PingX.zip<br>Ping(s) a computer and returns the results. <END><br>101,hmupdatedold.zip<br>HotmailBox - Alternative Hotmail client that accesses your inbox. Includes support for multiple accounts, synchronizes your account, has a built-in address book and support for attachments (with the exception of images, so far). <END><br>102,hypermap.zip<br>Hyper_Map allows you to define areas on a webpage graphic for jumping to different URLs. Image mapping is a neat way to create links. Also, the program demonstrates Picture1 draw properties and some HTML creation. <END><br>103,icqvb.zip<br>ICQ Control Center, The worlds most complete icq api example freely availble on the net, this revised edition contains protocol information sample code and much much more ! <END><br>104,HTMLMail.zip<br>This application allows to send HTML mails ! Now you can send images, formatted text in your mails, put some really cool effects ! <END><br>105,NTPSync.zip<br>Synchronize Your System Time with a Network Time Protocol (NTP) Server. <END><br>106,WinsockTrans.zip<br>This code allows you to transfer files from one pc to another using winsock. <END><br>107,Winsock下载.zip<br>Winsock 下载er - Lets you 下载 any file from the internet (Binary, ASCII, Text) any size. <END><br>108,ftp2.zip<br>An FTP application with complete VB source code included. <END><br>109,vb-aim.zip<br>AOL instant messenger client written in VB. <END><br>110,ping2src.zip<br>Version 2.02 of the popular Idoru Ping Monitor. Includes a Password Hacker, and shows important info on your machine <END><br>111,OnYxBrowser.zip<br>A full avtive browser, with all IE's trimings, i have left out the exe and some of the ocx. but ppl who have vb60 should have these ocx. <END><br>112,PostMan.zip<br>VB application which uses winsock control to send mail to your mail server! <END><br>113,transfer.zip<br>Simple file transfer (FTP) application. Contains both the client and server VB source code .vbp applications. Destination filename is set to "Temp". <END><br>114,inter.zip<br>Detects if the user is connected to the internet. <END><br>115,frmClient.zip<br>Started to program a remote tool FTP program. Give some feedback otherwise i'm going to code it in Delphi. <END><br>116,prjClient.zip<br>Live wire winsock file transfer program which retreives remote drives/directories and working on files and enables upload/下载 of files with progressbar. <END><br>117,webbrowser2.zip<br>I have tried to develop a very good browser. Now I myself can't rate it... so i am leaving to you guys out there to rate it.. <END><br>118,InternetBrowser.zip<br>It is an interesting Internet Browser. Add your favorites, URLs, Home Page, and History to Windows 95/98 Registry. Must see. <END><br>119,Browser2.zip<br>[UPDATED]:Complete Internet Browser. Must see. <END><br>120,display.zip<br>This code sample enables users to 下载 and display HTML, RTF, or Text files in a RichTextBox Control, using the Microsoft Internet Transfer Control included in Visual Basic 5.0. <END><br>121,easyhttp.zip<br>Retrieve Web page or file (including all HTTP headers and message body) througn HTTP protocol directly from VB program which utilize the MS WinSock Control. <END><br>122,emailcheck.zip<br>This application checks for incoming mail (POP3 client). <END><br>123,NetSend.zip<br>A Simple Application to Send Messages Without using a COMMAND Prompt. <END><br>124,ChatPrg.zip<br>This application provides seamless interaction between users of an intranet. The database acts as a Server and it has to be loaded on the server of your local intranet and each .exe serves as <br>a client. <END><br>125,Chatty.zip<br>This is a simple one-to-one chat program using Winsock. It includes a text based chat, a messaging feature and also a secure communication feature, much like SSL. I use the RSA 64 bit encryption for the secure channel. <END><br>126,Telephonic.zip<br>The program can be used in your desktop, as is. You will find dialing much more confortable and fast than the original Windows Dialer.exe. <END><br>127,ClientServer.zip<br>A messages Client / Server application (compile and source code).You can send messages from a client to another and server remote all users activity and distribute the messages to client who request that <END><br>128,MESSENGER.zip<br>E-MAIL PROGRAM. ALLOWS USER TO LOG INTO ISP SERVICE AND SEND MESSAGES AND FILES. <END><br>129,ip.zip<br>Very simple application which shows how to get your PC's IP address using the VB Winsock control. <END><br>130,CS_Tools_2.zip<br>This program can save you days to weeks of work on a huge domain with hundreds to thousands of users with its "Bulk Administration" and remote feature. Features Bulk Administration Allows you to administer the login path, profile path, home directory, and more with one click of a button for all users! Alternate Credentials Allows you to specify a different username and password to complete your tasks. <END> <br>131,networkinfo.zip<br>Application which gets all network information from the system. <END><br>132,gethtml.zip<br>This example uses the Inet control to 下载 the HTML source from any webpage. This could easily be used in conjunction with the Get Web Links example to make a full fledged web-spider and search engine program...<END><br>133,getweblinks.zip<br>This example uses the WebBrowser control to load a web page then enumerate and display all of the links on that page. This example could be easily expanded to be used as a web-spider with a little bit of effort. <END><br>134,bs2vb.zip<br>This example is a very simple solution to sending and receiving data to and from a Parallax Basic Stamp. This example requires a Basic Stamp and the MSComm control. Also included is an example Basic Stamp II program to work with the example... <END><br>135,Chatptop.zip<br>A Peer-to-Peer chatting program with a very easy user interface. <END><br>136,f_160.zip<br>A basic example on how to transfer files across the network using the WinSock Control(18KB)<END><br>137,f_159.zip<br>A simple example of exchanging data across a network using the WinSock control(4KB)<END><br>138,f_115.zip<br>A simple web browser built using the Web Browser control(2KB)<END><br>

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值