文档库 最新最全的文档下载
当前位置:文档库 › ASPNET英文概述

ASPNET英文概述

ASPNET英文概述
ASPNET英文概述

https://www.wendangku.net/doc/5f15225671.html, Overview

When ASP was first released,Web programming was more difficult because you needed IIS to serve your ASP https://www.wendangku.net/doc/5f15225671.html,ter,https://www.wendangku.net/doc/5f15225671.html,2.0and Visual Studio?2005made everything easier by introducing the Web site model of development. Instead of creating a new project inside Visual Studio,the Web site model lets you point to a directory and start writing pages and code.Furthermore,you can quickly test your site with the built-in https://www.wendangku.net/doc/5f15225671.html, Development Server,which hosts https://www.wendangku.net/doc/5f15225671.html, in a local process and obviates the need to install IIS to begin developing.we will introduce https://www.wendangku.net/doc/5f15225671.html,2.0technology from different aspects.

https://www.wendangku.net/doc/5f15225671.html, Framework Class Library

https://www.wendangku.net/doc/5f15225671.html, is part of Microsoft's https://www.wendangku.net/doc/5f15225671.html, framework,which contains a vast set of programming classes designed to satisfy any conceivable programming need.because Visual Basic,JScript,and C++.A great deal of the functionality of these programming languages overlaps.for example,for each language,you would have to include methods for accessing the file system,working with databases,and manipulating strings.what’s more,these languages contain similar programming constructs,can represent loops and conditionals.Even though the syntax of a conditional written in Visual Basic differs from the syntax of a conditional written in C++,the programming function is the same.Maintaining all this functionality for multiple languages requires a lot of work.Wouldn't it be easier to create all this functionality once and use it for every language?however,https://www.wendangku.net/doc/5f15225671.html, Framework Class Library does exactly that.It consists of a vast set of classes designed to satisfy any conceivable programming need.For instance,https://www.wendangku.net/doc/5f15225671.html, framework contains classes for handling database access,working with the file system,manipulating text, and generating graphics.In addition,it contains more specialized classes for performing tasks such as working with regular expressions and handling network protocols.furthermore,https://www.wendangku.net/doc/5f15225671.html, framework contains classes that represent all the basic variable data types such as strings,integers,bytes,characters,and arrays.

https://www.wendangku.net/doc/5f15225671.html, framework is huge.It contains thousands of classes(over3,400). Fortunately,the classes are not simply jumbled together.The classes of https://www.wendangku.net/doc/5f15225671.html, framework are organized into a hierarchy of namespaces.

A namespace is a logical grouping of classes.For example,all the classes that relate to working with the file system are gathered together into the System.IO namespace.The namespaces are organized into a hierarchy(a logical tree).At the root of the tree is the System namespace.This namespace contains all the classes for the base data types,such as strings and arrays.It also contains classes for working with random numbers and dates and times.

You can uniquely identify any class in https://www.wendangku.net/doc/5f15225671.html, framework by using the full namespace of the class.For example,to uniquely refer to the class that represents a file system file(the File class),you would use the following:

System.IO.File

System.IO refers to the namespace,and File refers to the particular class.

The classes contained in a select number of namespaces are available in your https://www.wendangku.net/doc/5f15225671.html, pages by default.(You must explicitly import other namespaces.)These default namespaces contain classes that you use most often in your https://www.wendangku.net/doc/5f15225671.html, applications:System—Contains all the base data types and other useful classes such as those related to generating random numbers and working with dates and times.

System.Collections—Contains classes for working with standard collection types such as hash tables,and array lists.

System.Collections.Specialized—Contains classes that represent specialized collections such as linked lists and string collections.

System.Configuration—Contains classes for working with configuration files (Web.config files).

System.Text—Contains classes for encoding,decoding,and manipulating the contents of strings.

System.Text.RegularExpressions—Contains classes for performing regular expression match and replace operations.

System.Web—Contains the basic classes for working with the World Wide Web, including classes for representing browser requests and server responses.

System.Web.Caching—Contains classes used for caching the content of pages and classes for performing custom caching operations.

System.Web.Security—Contains classes for implementing authentication and authorization such as Forms and Passport authentication.

System.Web.SessionState—Contains classes for implementing session state.

System.Web.UI—Contains the basic classes used in building the user interface of https://www.wendangku.net/doc/5f15225671.html, pages.

System.Web.UI.HTMLControls—Contains the classes for the HTML controls.

System.Web.UI.WebControls—Contains the classes for the Web controls.

You can choose C#or https://www.wendangku.net/doc/5f15225671.html, or C++or Visual Basic to program https://www.wendangku.net/doc/5f15225671.html, page.regardless of the language that you use to develop your https://www.wendangku.net/doc/5f15225671.html, pages,you need to understand that https://www.wendangku.net/doc/5f15225671.html, pages are compiled before they are executed.This means that https://www.wendangku.net/doc/5f15225671.html, pages can execute very quickly.The first time you request an https://www.wendangku.net/doc/5f15225671.html, page,the page is compiled into https://www.wendangku.net/doc/5f15225671.html, class,and the resulting class file is saved beneath a special directory on your server named Temporary https://www.wendangku.net/doc/5f15225671.html, Files. For each and every https://www.wendangku.net/doc/5f15225671.html, page,a corresponding class file appears in the Temporary https://www.wendangku.net/doc/5f15225671.html, Files directory.Whenever you request the same https://www.wendangku.net/doc/5f15225671.html, page in the future,the corresponding class file is executed.When an https://www.wendangku.net/doc/5f15225671.html, page is

compiled,it is not compiled directly into machine code.Instead,it is compiled into an intermediate-level language called Microsoft Intermediate Language(MSIL).

https://www.wendangku.net/doc/5f15225671.html,-compatible languages are compiled into this intermediate language.An https://www.wendangku.net/doc/5f15225671.html, page isn't compiled into native machine code until it is actually requested by a browser.At that point,the class file contained in the Temporary https://www.wendangku.net/doc/5f15225671.html, Files directory is compiled with https://www.wendangku.net/doc/5f15225671.html, framework Just in Time(JIT)compiler and executed.The magical aspect of this whole process is that it happens automatically in the background.All you have to do is create a text file with the source code for your https://www.wendangku.net/doc/5f15225671.html, page.

2.Building Forms with Web Server Controls

Useingseveral of the basic Web controls to represent standard HTML form elements such as radio buttons,text boxes,and list boxes.You can use these controls in your https://www.wendangku.net/doc/5f15225671.html, pages to create the user interface for your Web application..

3.Performing Form Validation with Validation Controls

Traditionally,Web developers have faced a tough choice when adding form validation logic to their pages.You can add form validation routines to your server-side code,or you can add the validation routines to your client-side code.The advantage of writing validation logic in client-side code is that you can provide instant feedback to your users.For example,if a user neglects to enter a value in a required form field,you can instantly display an error message without requiring a roundtrip back to the server.People really like client-side validation.It looks great and creates a better overall user experience.The problem,however,is that it does not work with all browsers.Not all browsers support JavaScript,and different versions of browsers support different versions of JavaScript,so client-side validation is never guaranteed to work.For this reason,in the past,many developers decided to add all their form validation logic exclusively to server-side code.Because server-side code

functions correctly with any browser,this course of action was safer.At the same time, The Validation controls automatically generate both client-side and server-side code. If a browser is capable of supporting JavaScript,client-side validation scripts are automatically sent to the browser.If a browser is incapable of supporting JavaScript, the validation routines are automatically implemented in server-side code.

Requiring Fields:The RequiredFieldValidator Control

You use RequiredFieldValidator in a Web form to check whether a control has a value.Typically,you use this control with a TextBox control.However,nothing is wrong with using RequiredFieldValidator with other input controls such as RadioButtonList.

Validating Expressions:The RegularExpressionValidator Control

You can use RegularExpressionValidator to match the value entered into a form field to a regular expression.You can use this control to check whether a user has entered,for example,a valid e-mail address,telephone number,or username or password.Samples of how to use a regular expression to perform all these validation tasks are provided in the following sections.

Comparing Values:The CompareValidator Control

The CompareValidator control performs comparisons between the data entered into a form field and another value.The other value can be a fixed value,such as a particular number,or a value entered into another control.

Summarizing Errors:The ValidationSummary Control

Imagine that you have a form with50form fields.If you use only the Validation controls discussed in the previous sections of this chapter to display errors,seeing an error message on the page might be difficult.For example,you might have to scroll down to the48th form field to find the error message.

Fortunately,Microsoft includes a ValidationSummary control with the Validation controls.You can use this control to summarize all the errors at the top of a page,or wherever else you want.

4.Advanced Control Programming

Working with View State

By default,almost all https://www.wendangku.net/doc/5f15225671.html, controls retain the values of their properties between form posts.For example,if you assign text to a Label control and submit the form,when the page is rendered again,the contents of the Label control are preserved. The magic of view state is that it does not depend on any special server or browser properties.In particular,it does not depend on cookies,session variables,or application variables.View state is implemented with a hidden form field called VIEWSTATE that is automatically created in every Web Forms Page.When used wisely,view state can have a dramatic and positive effect on the performance of your Web site.For example,if you display database data in a control that has view state enabled,you do not have to return to the database each time the page is posted back to the server.You can automatically preserve the data within the page's view state between form posts.

Displaying and Hiding Content

Imagine that you want to break the tax form into multiple pages so that a person views only one part of the tax form at a time.you can set the Visible and Enabled properties with individual controls and groups of controls to hide and display page https://www.wendangku.net/doc/5f15225671.html,ing the Visible and Enabled Properties

Every control,including both HTML and Web controls,has a Visible property that determines whether the control is rendered.When a control's Visible property has the value False,the control is not displayed on the page;the control is not processed for either pre-rendering or rendering.

Web controls(but not every HTML control)have an additional property named Enabled.When Enabled has the value False and you are using Internet Explorer version4.0or higher,the control appears ghosted and no longer functions.When used with other browsers,such as Netscape Navigator,the control might not appear ghosted,but it does not function.

5.Web Deployment Projects

The beauty of the https://www.wendangku.net/doc/5f15225671.html,2.0is that you can develop your Web application without thinking about packaging and deployment.when need another class,you can Add a.cs file to the App_Code directory and start writing.When want to store localizable strings in a resource file,you can add a.resx file to the App_GlobalResources directory and type in the strings.Everything just works;you don't have to think about the compilation and deployment aspect at all.

When you are ready to deploy,you have several options.The simplest choice is to copy your files to a live server and let everything be compiled on-demand(as it was in your test environment).The second option is to use the aspnet_compiler.exe utility and precompile the application into a binary release,which leaves you nothing but a collection of assemblies,static content,and configuration files to push to the server. The third option is to again use aspnet_compiler.exe,but to create an updateable binary deployment where your.as*x files remain intact(and modifiable)and all of your code files are compiled into binary assemblies.

6.C#Language

Introduction to the C#Language and https://www.wendangku.net/doc/5f15225671.html, Framework C#is an elegant and type-safe object-oriented language that enables developers to build a wide range of secure and robust applications that run on https://www.wendangku.net/doc/5f15225671.html, Framework.You can use C#to create

traditional Windows client applications,XML Web services,distributed components, client-server applications,database applications,and much,much more.Microsoft Visual C#2005provides an advanced code editor,convenient user interface designers,

integrated debugger,and many other tools to facilitate rapid application development based on version2.0of the C#language and https://www.wendangku.net/doc/5f15225671.html, Framework.

C#syntax is highly expressive,yet with less than90keywords,it is also simple and easy to learn.The curly-brace syntax of C#will be instantly recognizable to anyone familiar with C,C++or Java.Developers who know any of these languages are typically able to begin working productively in C#within a very short time.C# syntax simplifies many of the complexities of C++while providing powerful features such as nullable value types,enumerations,delegates,anonymous methods and direct memory access,which are not found in Java.C#also supports generic methods and types,which provide increased type safety and performance,and iterators,which enable implementers of collection classes to define custom iteration behaviors that are simple to use by client code.

As an object-oriented language,C#supports the concepts of encapsulation, inheritance and polymorphism.All variables and methods,including the Main method, the application's entry point,are encapsulated within class definitions.A class may inherit directly from one parent class,but it may implement any number of interfaces. Methods that override virtual methods in a parent class require the override keyword as a way to avoid accidental redefinition.In C#,a struct is like a lightweight class;it is a stack-allocated type that can implement interfaces but does not support inheritance.

In addition to these basic object-oriented principles,C#facilitates the development of software components through several innovative language constructs, including:

?Encapsulated method signatures called delegates,which enable type-safe event notifications.

?Properties,which serve as accessors for private member variables.

?Attributes,which provide declarative metadata about types at run time.

?Inline XML documentation comments.

If you need to interact with other Windows software such as COM objects or native Win32DLLs,you can do this in C#through a process called"Interop."Interop enables C#programs to do just about anything that a native C++application can do. C#even supports pointers and the concept of"unsafe"code for those cases in which direct memory access is absolutely critical.

The C#build process is simple compared to C and C++and more flexible than in Java.There are no separate header files,and no requirement that methods and types be declared in a particular order.A C#source file may define any number of classes, structs,interfaces,and events.

C#programs run on https://www.wendangku.net/doc/5f15225671.html, Framework,an integral component of Windows that includes a virtual execution system called the common language runtime(CLR) and a unified set of class libraries.The CLR is Microsoft's commercial implementation of the common language infrastructure(CLI),an international standard that is the basis for creating execution and development environments in which languages and libraries work together seamlessly.

Source code written in C#is compiled into an intermediate language(IL)that conforms to the CLI specification.The IL code,along with resources such as bitmaps and strings,is stored on disk in an executable file called an assembly,typically with an extension of.exe or.dll.An assembly contains a manifest that provides information on the assembly's types,version,culture,and security requirements.

When the C#program is executed,the assembly is loaded into the CLR,which might take various actions based on the information in the manifest.Then,if the security requirements are met,the CLR performs just in time(JIT)compilation to convert the IL code into native machine instructions.The CLR also provides other services related to automatic garbage collection,exception handling,and resource management.Code that is executed by the CLR is sometimes referred to as"managed code,"in contrast to"unmanaged code"which is compiled into native machine language that targets a specific system.The following diagram illustrates the

compile-time and run time relationships of C#source code files,the base class libraries,assemblies,and the CLR.

Language interoperability is a key feature of https://www.wendangku.net/doc/5f15225671.html, Framework.Because the IL code produced by the C#compiler conforms to the Common Type Specification (CTS),IL code generated from C#can interact with code that was generated from https://www.wendangku.net/doc/5f15225671.html, versions of Visual Basic,Visual C++,Visual J#,or any of more than20 other CTS-compliant languages.A single assembly may contain multiple modules written in https://www.wendangku.net/doc/5f15225671.html, languages,and the types can reference each other just as if they were written in the same language.

In addition to the run time services,https://www.wendangku.net/doc/5f15225671.html, Framework also includes an extensive library of over4000classes organized into names paces that provide a wide variety of useful functionality for everything from file input and output to string manipulation to XML parsing,to Windows Forms controls.The typical C# application uses https://www.wendangku.net/doc/5f15225671.html, Framework class library extensively to handle common "plumbing"chores.

中国美食英文介绍

中国美食英文介绍 I have a roommate from Shandong, I asked him if I did it right? He said I was right One of the oldest cuisines in China, with a history of 2,500 years. Originates from Confucius family banquet, then adopted by imperial kitchen. Lu cuisine has great influence in north China and has become the representative of North China cuisines Specializes in seafood like prawns, sea cucumber, flounder 在中国最古老的菜系之一,具有2500年历史的。 源于孔子的家庭宴会,由皇家厨房采用。 鲁菜在北中国的重大影响,已成为中国北方菜的代表 专门从事海鲜像虾,海参,比目鱼 Shandong is the birthplace of many famous ancient scholars such as Confucious and Mencius. And much of Shandong cuisine's history is as old as Confucious himself, making it the oldest existing major cuisine in China. 山东是许多著名学者的故乡,例如孔夫子和孟子。许多山东菜的历史和孔夫子一样悠久,使 得山东菜系成为中国现存的最古老的主要菜系之一。 Consisting of Jinan cuisine and Jiaodong cuisine, Shandong cuisine, clear, pure and not greasy, is characterized by its emphasis on aroma, freshness, crispness and tenderness. Shallot and garlic are usually used

中国文化英文介绍

Confucius named Qiu styled Zhongni, a great thinker and educator in the late Spring and Autumn Period, and the founder of Confucianism. Confucius instructed more than 3000 disciples and some were from poor families. Confucius gradually changed the tradition that only nobilities had the right to receive education. In his later years , Confucius compiled many literary works of ancient times, including The Book of Songs ,The Book of Documents, and The Books of Changes. His saying and behaviors were compiled in The Analects of Confucius by his disciples. His ideology has been absorbed and carried composing the essential part of Chinese traditional ideology. It was also spread into the border regions and areas building up a circle of Confucianism. UNESCO labeled him one of the “Ten Culture Celebrities”. 孔子 孔子名丘字仲尼,春秋末期伟大的思想家和教育家,儒家学派创史人。孔子一共教授了三千多个学生,其中不乏贫困家庭的孩子,改变了只有贵族子女才有资格上学的传统。孔子晚年还编订上古书籍,《诗经》《尚书》《周易》等。孔子的言行被他的弟子们收集在《论语》中,他的思想也被后人吸收和发扬光大,成为中国传统思想最主要的组成部分,并逐渐传播到周边国家,形成了影响范围很广的儒家文化圈。联合国教科文组织曾将孔子列入世界十大文化名人之一。 Beijing Opera Beijing Opera is the most popular and influential opera in China with a history of almost 200 years. In development Beijing Opera has formed a number of fictitious props. For instance a pedal means a boat. Without any physical props involved , an actor may perform going upstairs or downstairs opening or closing a door by mere gestures. Though exaggerated those actions would give audience an impression with graceful movements. There are four main roles sheng dan jing and chou. A sheng or dan has the eyebrows painted and eyes circled. A jing and chou have their facial makeup ,for example, a red face depicts the loyalty and bravery and a white face symbolizes treachery and guile. 京剧 京剧是中国流行的最广泛影响最大的一个剧种,拥有两百多年的历史。在长期的发展过程中,京剧形成了一套虚拟表演动作,如一条桨就可以代表一只船。不需要任何的道具,演员就能表现出上楼、下楼,开门、关门等动作,虽然经赤了夸张但这些动作能给观众既真实又优美的感觉。京剧演员分生、旦、净、丑四个行当,生和旦的化痕迹要描眉、吊眉、画眼圈,净丑面部需要化妆,比如,红脸表示忠诚勇猛,白脸表示奸险。

中国15个城市英语介绍

西安--丝绸之路的起点,世界历史名城,华夏精神故乡 1.简介 Xi'an, the historical city, was called Chang'an in ancient times, and is now the capital of Shaanxi province. Xi'an is situated in the center of Weihe Plain with the towering and verdant Mt. Qinling in the south, with the meandering and rolling Beishan mountain system in the north and eight rivers around it, all of which are at Guang Zhong Plain (the center of 2.标志性建筑 古城墙 The City Wall of Xi'an is one of oldest existing

Chinese city wall. It is based in Xi'an, an ancient capital of China. 钟楼 China's largest and most magnificent building, the best preserved Ming Dynasty architecture. 大雁塔 As the symbol of the old-line Xian, Big Wild Goose Pagoda is a well-preserved ancient building and a holy place for Buddhists. It is located in the southern suburb of Xian City, about 4 kilometers miles) from the downtown of the city. Standing in the Da Ci'en Temple complex, it attracts numerous visitors for its fame in the Buddhist religion, its simple but appealing style of construction, and its new square in front of the

中国山的介绍 英文版

The Mountains With Resorts in the US ------Group four 100501 Members : 吴伟慧080520100019 范秀秀080520100018 阮丽云080520100016 李华080520100015

The Mountains in the US Every nation possesses unique features ,so does the US. The mountains in the US are very attractive and famous all over the world. Now we come to see the Mountains in the US.In the western North America,the Rocky Mountains are a major mountains range.In Eastern North America,there is the Appalachian Mountains.The Cordillera located in the West America.And the Mountain McKinley in the Alaska located in the North America.These four Mountains are the famous mountains in the US. The Cordillera is the longest drape ridge in the world.It is about 15,000 kilo miles.There are many volcanoes and earthquakes.It concludes Andes Mountains 、Coast Mountains Sierra Nevada Mountain and Rocky Mountain.The mineral resources has the continent or world significant.And there are many rare animals,such as mink,lynx,armadillo and so on.Inside,the Mount Whitney is 4418 meters high which is the highest mountain in the America. However,in China,the highest mountain is the Qomolangma is 8844.43 meters high.It is also the highest

中国美食英文小介绍

中国地域辽阔,民族众多,因此各种中国饮食口味不同,却都味美,令人垂涎。因为中国地方菜肴各具特色,总体来讲,中国饮食可以大致分为八大地方菜系,这种分类已被广为接受。 山东菜系,由济南菜系和胶东菜系组成,清淡,不油腻,以其香,鲜,酥,软而闻名。因为使用青葱和大蒜做为调料,山东菜系通常很辣。山东菜系注重汤品。清汤清澈新鲜,而油汤外观厚重,味道浓重。济南菜系擅长炸,烤,煎,炒,而胶东菜系则以其烹饪海鲜的鲜淡而闻名。 山东最著名的菜肴是糖醋鲤鱼。山东菜主要是速炸,烧烤,炒或深炸。菜肴清新肥美,搭配山东本地的著名啤酒——青岛啤酒就完美了。 四川菜系,是世界上最著名的中国菜系之一。四川菜系以其香辣而闻名,没有品尝过四川菜的人不算来过中国。 如果你吃四川菜,发现它过于柔和,那么你可能吃的不是正宗的四川菜。红绿辣椒被用在许多菜肴中,带来特别的辣味,在中国文字里叫麻,通常会在口中留下麻木的感觉。四川火锅也许是世界上最出名的火锅,尤其是半辣半清的鸳鸯火锅。 广东菜源自于中国最南部的省份广东省。大多数华侨来自广东,因此广东菜也许是国外最广泛的中国地方菜系。 广东人热衷于尝试用各种不同的肉类和蔬菜。事实上,中国北方人常说,广东人吃天上飞的,除了飞机;地上爬的,除了火车;水里游的,除了船儿。这一陈述很不属实,但是广东菜是各类丰富的中国菜系之一。 广东菜系,味道清,淡,脆,鲜,为西方人所熟知,常用猛禽走兽来烹饪出有创意的菜肴。它的基础烹饪方法包括烤,炒,煸,深炸,烤,炖和蒸。其中蒸和炒最常用于保存天然风味。 福建菜系由福州菜,泉州菜,厦门菜组成,以其精选的海鲜,漂亮的色泽,甜,酸,咸和香的味道而出名。最特别的是它的“卤味”。 江苏菜,以水产作为主要原料,注重原料的鲜味。其雕刻技术十分珍贵,其中瓜雕尤其著名。烹饪技术包括炖,烤,焙,煨等。淮阳菜的特色是淡,鲜,甜,雅。江苏菜系以其精选的原料,精细的准备,不辣不温的口感而出名。因为江苏气候变化很大,江苏菜系在一年之中也有变化。味道强而不重,淡而不温。

中英文公司简介对照

公司简介 汕头市猛狮新能源车辆技术有限公司,作为猛狮科技(股票代码:002684)全资子公司成立于2013年,是集研发、制造、销售、服务于一体的专业化个人智能代步车企业。短短数载,猛狮新能源凭借卓越的产品和精湛的科技,成为中国个人智能代步工具的领导者。 汕头市猛狮新能源车辆技术有限公司是目前中国最大的个人智能代步工具生产基地之一、全国品类最全的折叠电动车制造商,建成八大智能体系,产品广泛运用于短距离接驳,休闲运动,一般出行等。公司总占地面积60多亩,下设PMC中心、营销中心,研发中心,品质管理中心。公司目前在职员工120余名,其中本科学历以上达到公司在职人员的90%,取得博士学历的有两名。目前公司拥有业界最先进的设备、制造工艺。整车年生产能力超过30万辆。戴乐电动车作为汕头市猛狮新能源车辆技术有限公司的自有品牌,销售渠道已经 覆盖全国10多个省、市、自治区,40多家专卖店,产品更畅销全球20 多个国家和地区,2014年外销加内销实现全年销量50000余台。 公司坚持以市场为导向,以“科技创新”为宗旨,秉承“客户体验第一”的经营理念,不断为广大客户提供优质的产品和服务。 我们欢迎海内外各界有识之士莅临我公司进行专业的技术交流和诚信的商务合作。您 的满意就是我们的目标。 Company Introduction Shantou Menshine New Energy Vehicle Co.,Ltd. Founded as a wholly-owned subsidiary of Dynavolt (002684)in 2013,is a professional personal Intelligent Scooters enterprises R&D、manufacture、sale、 service in a few years, Menshine New Energy with excellent products and superb technology,already in China personal Intelligent Scooter independent brand

中国各地美食英文介绍

1. Beijing: Kaoya (Peking roast duck, 烤鸭) 北京:烤鸭 The cuisine: Generations of emperors and blue-blooded residents have set the standard for high-end Chinese cuisine. The city is famous for imperial cuisine, or guan cai (官菜), which uses only premium quality ingredients and is cooked with plex techniques. 烹饪风格:历代皇帝和贵族早已为高端的中式烹饪设定了标准。北京这座城市因其皇家菜肴或是官菜闻名遐迩,这种菜肴仅选用上等食材佐料,并运用复杂的技巧烹饪而成。 The dish: A perfect kaoya is roasted to a reddish color; its skin remains crispy and the meat a fruity flavor. 菜肴:最棒的烤鸭烤至淡红色,表皮酥脆,鸭肉口感圆润。 A whole roasted duck is typically served in two ways: the juicy meat and crispy skin are wrapped in mandarin pancakes with scallion, cucumber and hoisin sauce; and the bones are slow-cooked into a tasty soup. 一整只烤鸭有两种特色吃法:拿薄饼卷着肥美的鸭肉和酥脆的鸭皮,再搭配些青葱丝,黄瓜丝和海鲜酱;鸭骨架经慢火炖成美味的汤。 2. Chongqing: La zi ji (chili-fried chicken cubes, 辣子鸡) 重庆:辣子鸡 The cuisine: Even pared with food from , ’s mecca of spicy dishes, cuisine scores high in spiciness and numb-inducing ingredients. 烹饪风格:即使常常拿来和川菜作对比,重庆仍旧是当之无愧的中国辣菜圣城,在麻辣程度上重庆菜首屈一指。 The dish: La zi ji bines crispy chicken breast cubes with a fireplace of peppercorn, toasted and dried bird’s-eye chilis to create a plate of hot, red deliciousness. 菜肴:辣子鸡是将酥脆的鸡胸脯块与干胡椒、芝麻和干辣椒一同翻炒,从而做出一盘子火辣辣红彤彤的美味。 3. Fujian province: Fo tiao qiang (Buddha jumps over the wall, 佛跳墙) 福建省:佛跳墙 The cuisine: Located along the southeastern coast of , is famous for fresh seafood, but its flavorful shrimp oil and shrimp paste make the region’s cuisine stand proud. 烹饪风格:坐落于中国东南沿海的福建省以其新鲜的海产而闻名,不过福建有名的虾油和虾酱也让当地引以为傲的烹饪手法。 The dish: Legend has it that this dish is so irresistible that Buddha jumped over the wall for a taste.菜肴:相传佛跳墙这道菜美味难挡,佛都从墙头跳过前来品尝。 Fo tiao qiang is made of 18 pricey ingredients, including shark fin, abalone, sea cucumber, ginseng and scallops, all together for hours with premium Shaoxing rice wine.

中国美食英文介绍[资料]

中国美食英文介绍[资料] I hve roommte rom Shndong, I sked him i I did it right? He sid I ws right One o the oldest cuisines in Chin, with history o 2,500 yers. Origintes rom Conucius mily bnquet, then dopted by imperil kitchen. Lu cuisine hs gret inluence in north Chin nd hs become the representtive o North Chin cuisines Specilizes in seood like prwns, se cucumber, lounder 在中国最古老的菜系之一,具有2500年历史的。 源于孔子的家庭宴会,由皇家厨房采用。 鲁菜在北中国的重大影响,已成为中国北方菜的代表 专门从事海鲜像虾,海参,比目鱼 Shndong is the birthplce o mny mous ncient scholrs such s Conucious nd Mencius. nd much o Shndong cuisine's history is s old s Conucious himsel, mking it the oldest existing mjor cuisine in Chin. 山东是许多著名学者的故乡,例如孔夫子和孟子。许多山东菜的历史和孔夫子一样悠久,使 得山东菜系成为中国现存的最古老的主要菜系之一。 Consisting o Jinn cuisine nd Jiodong cuisine, Shndong cuisine, cler, pure nd not gresy, is chrcterized by its emphsis on rom, reshness, crispness nd tenderness. Shllot nd grlic re usully used s sesonings so Shngdong dishes tstes pungent usully. Soups re given much emphsis in Shngdong dishes. Thin soup etures cler nd resh while cremy soup looks

中国城市英文介绍---上海

Serving as the largest base of Chinese industrial technology,the important seaport and China's largest commercial and financial center, Shanghai draws the attention of the whole world. 作为中国工业技术的最大基地、重要海港和中国最大的商贸金融中心,上海吸引着整 个世界的目光。 Modern Shanghai has three key areas of interest to the visitor. These comprise Sightseeing,Business and Shopping center upon People's Square and along the Huangpu River. The city's Cultural Center with its public activities and community facilities and finally the main Entertainment and Holiday Tourism area is located at Mt. Sheshan,Chongming Island,Dingshan Lake and Shenshuigang Area. 对于外地游客来说,现代化的上海主要有三个能让他们感兴趣的区域,即以人民广 ‘场和黄浦江为中心的观光、商贸和购物区域。城市的文化中心有公共活动和社区服务,其他主要的娱乐、消遣和假日旅游在佘山、崇明岛、淀山湖和深水港地区举行。 Known as“the Oriental Paris",Shanghai is a shopper's paradise. One of the musts for tourists is Nanjing Road. Huaihai Road intrigues those with modern and fashionable tastes,while Sichuan North Road meets the demands of ordinary folks. In addition,Xujiahui Shopping Center,Yuyuan Shopping City,Jiali Sleepless City are thriving and popular destinations for those who are seeking to buy something special as a memento of their visit. 以“东方巴黎”而闻名于世的上海是购物者的天堂。游人必去的地方之一是南京路。 淮海路吸引着大批追求现代时尚的人们,而四川北路却迎合了普通百姓的需求。此外,徐家汇购物中心、豫园购物城、嘉利不夜城等著名的繁华购物场所,都是那些寻求购 买有纪念意义特殊物品的游客们喜欢去的地方。 A wide variety of cuisines can be found in the City and today Shanghai offers a plethora of culinary delights focusing on the traditions of Beijing,Yangzhou,Sichuan,Guangzhou as well as its own local dishes. Shanghai's restaurants are among the finest to be found in China and they welcome diners from anywhere at any time. 上海城里的名吃佳肴也是名目繁多、数不胜数。如今,上海为游客们提供了一套丰富 多彩且美味可口的菜单,其中包括北京风味、四川风味、广州风味以及上海地方特色 的菜肴。上海的餐馆都是在中国一流餐馆之列。它们随时都在恭候着各地游客们的光顾。

英文版公司简介常用语组

为大家收集一些在外贸活动中, 非常实用的企业及公司介绍用到的词组。 NTN创业于1918年3月,公司创业初期主要从事轴承的研发、制造业务。 NTN Corporation was founded in March 1918, which was principally engaged in research, development and manufacture of bearing in the early stage. 随着事业的逐步扩大, NTN进行了股份制改制,公司主要从事轴承、等速万向节、精密机械等的生产以及销售业务。 With evolution, most of NTN's effort has been changed into the manufacture and sales of bearings, Constant Velocity Joints (CVJ) and precision machinery since the Joint-stock reform in 1934. 中国电子进出口总公司(CEIEC)成立于1980年4月,是中国最早成立的全国性专业外贸公司之一。经过30年的发展,业务范围涉及国际贸易、海外工程、防务电子、船舶业务、招标业务、展览广告及现代物流等多个领域 China Electronics Import & Export Corp. (CEIEC) was established as a national foreign trader, with the approval of the State Council in Apr. 1980. After thirty years’ operation, CEIEC has evolved into a comprehensive enterprise, extending its business scope of from international trade, to overseas engineering, tendering, ship business, defense electronics, exhibition service, and modern logistics. 公司具有国际贸易、国际工程承包、招标代理、展览广告等多种业务的甲级经营资质。截至2009年底,公司总资产达亿元人民币,实现销售收入亿元人民币。 CEIEC is honorably entitled to a number of A-grade quality certificates in contract of world bidding and trading, international engineering project, tendering, exhibition and advertisement. At the end of 2009, the company's total assets attained RMB billion; sales revenue reached RMB . 国际贸易是公司的传统主营业务。截至2009年底,累计进出口额达亿美元。公司是商务部

深圳简介英文版

General Information Shenzhen, whose nickname is PengCheng(city of roc), is one of the provincial cities of Guangdong province. Shenzhen, located at the south of Guangdong, is east to the Daya and Dapeng Bay, west to the estuary of Pearl River and Lingdingyang, south to Hong Kong, and north to Dongguan and Huizhou. Shenzhen is the first special economic zone of China, serving as a window for China’s reform and openness. Now, Shenzhen has developed into an international city with great influence, creating th e”Shenzhen Speed”which attracts worldwide attention. Meanwhile, Shenzhen enjoys the good fame of City of Design, City of Piano and City of Maker. Demographics With a population of roughly 10 million, Shenzhen has a high population density. As an immigrant city, about 6 million of these people are immigrants coming from everywhere of China with an average age of less than 30 years old. It was reported that over 20 percent of the people who has got the PhD degree in China worked in Shenzhen. Climate Shenzhen has a subtropical monsoon climate with an annual average temperature of 22.3, bringing us a beautiful garden city which enjoys four seasons of green trees and blooming flowers, Transportation Shenzhen is the only city that owns seaports, airports and land ports in China. The number of ports here ranks first in China. Its seaports are especially developed. The Shenzhen Port ranks sixth among world container ports. Luohu Port is the largest land passenger port in China and Huanggang Port is the largest land freight port. Besides the ports, Guangshen and Jingjiu railways link Hong Kong, Shenzhen and inland cities. Economy Shenzhen is in the front rank of mainland Chinese cities in terms of

中国书法介绍英文版calligraphyintroduction

Calligraphy Calligraphy is understood in China as the art of writing a good hand with the brush or the study of the rules and techniques of this art. As such it is peculiar to China and the few countries influenced by ancient Chinese culture. In the history of Chinese art, calligraphy has always been held in equal importance to painting. Great attention is also paid today to its development by holding exhibitions of ancient and contemporary works and by organizing competitions among youngsters and people from various walks of life. Sharing of experience in this field often makes a feature in Sino-Japanese cultural exchange. Chinese calligraphy, like the script itself, began with the hieroglyphs and, over the long ages of evolution, has developed various styles and schools, constituting an important part of the heritage of national culture. Classification Chinese scripts are generally divided into five categories: The seal character (zhuan), the official or clerical script (li), the regular script (kai), the running hand (xing) and the cursive hand (cao). 1) The zhuan script or seal character was the earliest form of writing after the oracle inscriptions, which must have caused great inconvenience because they lacked uniformity and many characters were written in variant forms. The first effort for the unification of writing, it is said, took place during the reign of King Xuan (827-782 B. C.) of the Western Zhou Dynasty, when

中国文化 十二生肖介绍英文版

有关十二生肖的英文介绍 ●It's interesting that we have 12 Chinese zodiacs in China, and you have 12 signs in your culture. ●More than 30,000 years ago, the Chinese animal signs are a 12-year cycle used for dating the years. They represent a cyclical concept of time, rather than the western linear concept of time. The Chinese lunar calendar is based on the cycles of the moon, and is constructed in a different fashion than the western solar calendar. In the Chinese calendar, the beginning of the year falls somewhere between late January and early February. ●In traditional china, dating methods were cyclical, cyclical meaning something that is repeated time after time according to a pattern. ● A popular folk method which reflected this cyclical method of recording years are the twelve animal signs. Every year is assigned an animal name or sign according to a repeating cycle: mouse, ox, tiger, rabbit, dragon, snake, horse, sheep, monkey, rooster, dog and pig. You might found out that many Chinese people strongly believe that the time of a person's birth is primary factor in determining that person's characteristics. ●According to one legend, Buddha invited all the animals to his

公司简介英文版

Company Profile Changzhou Bxinyuse Lift Table Manufacture Co., Ltd, Jiangsu Province,to a professional committed to the design, development and production of electric lift ergonomic desk children learning tables and other products of the company.Since its inception, we have consistently uphold: "customer first, service first, genuine" business philosophy, always uphold the integrity, innovation, development-oriented principle. The company has experienced design team, industry-leading R & D capability and strong manufacturing strength, the product has a stylish look and feel, and always follow the current fashion trends emerging, high-quality, world-renowned. Changzhou Bxinyuse Lift Table Manufacture Co., Ltd sales to United States, Europe, Australia, Japan, South Korea and other countries, and we sincerely hope to establish friendly business relations with customers from all over the world. The company's operating philosophy:adhere to customer-centric, technology and innovation as the fundamental, continued to improve the user experience, improve product and service quality. The company's mission:to make children more healthy growth, so that work more easy and free. The company's vision:"value-creating" leader.Through constant innovation and improvement of marketing value-added services, to continuously improve market share and customer satisfaction, so that we become Chinese lift tables industry "value-creating" leader. The ultimate goal:to become the first Chinese brand lift tables industry..

相关文档