|
Главная | Правила | Регистрация | Дневники | Справка | Пользователи | Календарь | Поиск | Сообщения за день | Все разделы прочитаны |
![]() |
|
Опции темы | Опции просмотра |
![]() |
#1 (permalink) |
Новичок
Регистрация: 05.03.2008
Сообщений: 3
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 10
|
![]() 1) различные эксперименты на тему администрирования/программирования (в т. ч. виртуальные машины, ну и что в голову придёт) 2) работа со звуком (запись, обработка и всё такое) Ещё хочется, чтоб шума было поменьше, всё-таки много времени рядом проводить. Но и не в ущерб надежности и производительности... Про звуковую карту не спрашиваю, это отдельный вопрос, а на счёт остальной конфигурации хочется услышать советы. Бюджет, наверное, тысяч 15-20. |
![]() |
![]() |
![]() |
|
Helpmaster
Member
Регистрация: 08.03.2016
Сообщений: 0
|
Дам вам ссылки на темы которые схожи с вашей Шумоизоляция системного блока Чистка системного блока Помогите выбрать конфигурацию системного блока Помогите подобрать конфигурацию системного блока за 17.000 рублей. |
![]() |
#2 (permalink) |
Member
Регистрация: 10.03.2007
Сообщений: 172
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 27
|
![]()
Насчёт звука!!!!
P4 или Core птомучто со звукарями общялся говорятхорошо сказывается на работе! 2 гига оперативы! ну там всё остольное как хочеш! Главное в метери подбор чтоб был такой что когда будеш выбирать звуковую чтобы совместима была полность!!!! Я се аудиофила брал неплохо работает!!! Главное звукавуха а они для этого дела дорогие! |
![]() |
![]() |
![]() |
#3 (permalink) | |
Member
Регистрация: 10.03.2007
Сообщений: 172
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 27
|
![]()
Какраз статью нашол
Цитата:
|
|
![]() |
![]() |
![]() |
#4 (permalink) | |
Новичок
Регистрация: 05.03.2008
Сообщений: 3
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 10
|
![]() Цитата:
|
|
![]() |
![]() |
![]() |
#5 (permalink) |
687948395
Регистрация: 02.07.2007
Сообщений: 4,110
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 317
|
![]()
Shadow_Of...
Core 2 Duo E8400 или 4 ядра Core Quad 6600 |
![]() |
![]() |
Ads | |
Member
Регистрация: 31.10.2006
Сообщений: 40200
Записей в дневнике: 0
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 55070
|
![]() |
#8 (permalink) |
Member
Регистрация: 03.04.2009
Сообщений: 88
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 1
|
![]()
Здравствуйте. Нужно ответить на 3 вопроса по ASP.NET.
1. You create an ASP.NET application for an online insurance site PremiumInsurance. A page named PersonalDetails.aspx has the following Page directive: <%@ Page Language="VB" CodeBehind="PersonalDetails.aspx.vb" AutoEventWireup="false" inherits="InsApp.PersonalDet"%> PersonalDetails.aspx had a TextBox control named MemberID in which the user can enter a Personal MemberID. The HTML code for this control is as follows: <asp:TextBox ID="MemberID" Columns="20" Runat="server"/> You need to implement a TextChanged event handler for MemberID. You want this event handler to retrieve information about a person by using an XML Web service that charges for each access. The page will then be redisplayed with additional information about the vehicle obtained from the XML Web service. You are implementing the TextChanged event handler. Which two courses of action should you take? a. In the Page directive for PersonalDetails.aspx, ensure that the AutoEventWireup attributes is set to "true". b. In the Page directive for PersonalDetails.aspx, ensure that the EnableViewState attribute is set to "true". c. In the MemberID HTML element, ensure that the AutoPostback attribute is set to "false". Include code for the client-side onserverchange event to submit the Web Form for processing by the server. d. In the MemberID HTML element, ensure that the AutoPostback attribute is set to "true". Include code in the TextChanged event handler to query the XML Web service. 2. You are developing a website that has four layers. The layers are user interface (web pages), businessobjects, data objects, and database. You want to pass data from the database to controls on a web form. What should you do? a. Populate the data objects with data from the database. Populate the controls with values retrieved from the data objects. b. Populate the business objects with data from the database. Populate the controls with values retrieved from the business objects. c. Populate the data objects with data from the database. Populate the business objects with data from the data objects. Populate the controls with values retried from the business objects d. Bind the controls directly to the database 3. XYZ is creating an e-commerce site for PremiumBoutique. The site is distributed across multiple servers in a Web form. Users will be able to navigate through the pages of the site and select products for purchase. XYZ wants to use a DataSet object to save their selections. Users will be able to view their selections at any time by clicking a Shopping Cart link. XYZ wants to ensure that each user's shopping cart DataSet object is saved between requests when the user is making purchases on the site. How can this requirement be implement? a. Create a StateBag object. Use the StateBag object to store the DataSet object in the page's ViewState property b. Use the HttpSessionState object returned by the Session property of the page to store the DataSet object. Use the Web.config file to configure an out-of-process session route c. Use the Cache object returned by the page's Cache property to store a DataSet object for each user. Use an HttpCachePolicy object to set a timeout period for the cached data d. Use the Session_Start event to create an Application variable of type DataSet for each session. Store the DataSet object in the Application variable На все остальные вопросы ответить удалось, а эти вызывают затруднение. |
![]() |
![]() |
Ads | |
Member
Регистрация: 31.10.2006
Сообщений: 40200
Записей в дневнике: 0
Сказал(а) спасибо: 0
Поблагодарили 0 раз(а) в 0 сообщениях
Репутация: 55070
|
![]() |
Метки |
конфигурация компьютера |
Опции темы | |
Опции просмотра | |
|
|