Monday, July 16, 2012
Sunday, July 15, 2012
Thursday, June 14, 2012
Food
Seeds of plants are a good source of food for animals, including humans, because they contain the nutrients necessary for the plant's initial growth, including many healthful fats, such as Omega fats. In fact, the majority of food consumed by human beings are seed-based foods. Edible seeds include cereals (maize, wheat, rice, et cetera), legumes (beans, peas, lentils, et cetera), and nuts. Oilseeds are often pressed to produce rich oils - sunflower, flaxseed, rapeseed (including canola oil), sesame, et cetera.
Seeds are typically high in unsaturated fats and, in moderation, are considered a health food, although not all seeds are edible. Large seeds, such as those from a lemon, pose a choking hazard, while seeds from apples and cherries contain a poison (cyanide).
Fruits are the ripened ovaries of plants, including the seeds within. Many plants have evolved fruits that are attractive as a food source to animals, so that animals will eat the fruits and excrete the seeds some distance away. Fruits, therefore, make up a significant part of the diets of most cultures. Some botanical fruits, such as tomatoes, pumpkins, and eggplants, are eaten as vegetables. (For more information, see list of fruits.)
Vegetables are a second type of plant matter that is commonly eaten as food. These include root vegetables (potatoes and carrots), bulbs (onion family), leaf vegetables (spinach and lettuce), stem vegetables (bamboo shoots and asparagus), and inflorescence vegetables (globe artichokes and broccoli and other vegetables such as cabbage or cauliflower. .
Animals
Various raw meats
Main articles: Animal source foods and Food chain
Animals are used as food either directly or indirectly by the products they produce. Meat is an example of a direct product taken from an animal, which comes from muscle systems or from organs. Food products produced by animals include milk produced by mammary glands, which in many cultures is drunk or processed into dairy products (cheese, butter, et cetera). In addition, birds and other animals lay eggs, which are often eaten, and bees produce honey, a reduced nectar from flowers, which is a popular sweetener in many cultures. Some cultures consume blood, sometimes in the form of blood sausage, as a thickener for sauces, or in a cured, salted form for times of food scarcity, and others use blood in stews such as civet.
Some cultures and people do not consume meat or animal food products for cultural, dietary, health, ethical, or ideological reasons. Vegetarians do not consume meat. Vegans do not consume any foods that are or contain ingredients from an animal source.
Saturday, May 12, 2012
ASP.NET Creating a Simple Event Calendar for ASP.NET Tutorial
What is ASP.NET?
ASP.NET is a Web application framework developed and marketed by Microsoft to allow programmers to build dynamic Web sites, Web applications and Web services. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language. The ASP.NET SOAP extension framework allows ASP.NET components to process SOAP messages.
History
After the release of Internet Information Services 4.0 in 1997, Microsoft began researching possibilities for a new Web application model that would solve common complaints about ASP, especially with regard to separation of presentation and content and being able to write "clean" code.[1] Mark Anders, a manager on the IIS team, and Scott Guthrie, who had joined Microsoft in 1997 after graduating from Duke University, were tasked with determining what that model would look like. The initial design was developed over the course of two months by Anders and Guthrie, and Guthrie coded the initial prototypes during the Fall of 1997.[2]
The initial prototype was called "XSP"; Guthrie explained in a 2007 interview that, "People would always ask what the X stood for. At the time it really didn't stand for anything. XML started with that; XSLT started with that. Everything cool seemed to start with an X, so that's what we originally named it."[1] The initial prototype of XSP was done using Java,[3] but it was soon decided to build the new platform on top of the Common Language Runtime (CLR), as it offered an object-oriented programming environment, garbage collection and other features that were seen as desirable features that Microsoft's Component Object Model platform did not support. Guthrie described this decision as a "huge risk", as the success of their new Web development platform would be tied to the success of the CLR, which, like XSP, was still in the early stages of development, so much so that the XSP team was the first team at Microsoft to target the CLR.
With the move to the Common Language Runtime, XSP was re-implemented in C# (known internally as "Project Cool" but kept secret from the public), and the name changed to ASP+, as by this point the new platform was seen as being the successor to Active Server Pages, and the intention was to provide an easy migration path for ASP developers.[4]
Mark Anders first demonstrated ASP+ at the ASP Connections conference in Phoenix, Arizona on May 2, 2000. Demonstrations to the wide public and initial beta release of ASP+ (and the rest of the .NET Framework) came at the 2000 Professional Developers Conference on July 11, 2000 in Orlando, Florida. During Bill Gates' keynote presentation, Fujitsu demonstrated ASP+ being used in conjunction with COBOL,[5] and support for a variety of other languages was announced, including Microsoft's new Visual Basic .NET and C# languages, as well as Python and Perl support by way of interoperability tools created by ActiveState.[6]
Once the ".NET" branding was decided on in the second half of 2000, it was decided to rename ASP+ to ASP.NET. Mark Anders explained on an appearance on The MSDN Show that year that, "The .NET initiative is really about a number of factors, it's about delivering software as a link building service, it's about XML and Web services and really enhancing the Internet in terms of what it can do ... we really wanted to bring its name more in line with the rest of the platform pieces that make up the .NET framework."[4]
After four years of development, and a series of beta releases in 2000 and 2001, ASP.NET 1.0 was released on January 5, 2002 as part of version 1.0 of the .NET Framework. Even prior to the release, dozens of books had been written about ASP.NET,[7] and Microsoft promoted it heavily as part of its platform for Web services. Guthrie became the product unit manager for ASP.NET, and development continued apace, with version 1.1 being released on April 24, 2003 as a part of Windows Server 2003. This release focused on improving ASP.NET's support for mobile devices.
Pages
ASP.NET Web pages, known officially as Web Forms,[8] are the main building block for application development.[9] Web forms are contained in files with an ".aspx" extension; these files typically contain static (X)HTML markup, as well as markup defining server-side Web Controls and User Controls where the developers place all the required static and dynamic content for the Web page. Additionally, dynamic code which runs on the server can be placed in a page within a block <% -- dynamic code -- %>, which is similar to other Web development technologies such as PHP, JSP, and ASP. With ASP.NET Framework 2.0, Microsoft introduced a new code-behind model which allows static text to remain on the .aspx page, while dynamic code remains in an .aspx.vb or .aspx.cs or .aspx.fs file (depending on the programming language used).[10]
Directives
A directive is special instructions on how ASP.NET should process the page.[11] The most common directive is <%@ Page %> which can specify many attributes used by the ASP.NET page parser and compiler.
[edit]
Examples
[edit]
Inline code
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The above page renders with the Text "The current time is: " and the
[edit]
Code-behind solutions
<%@ Page Language="C#" CodeFile="SampleCodeBehind.aspx.cs" Inherits="Website.SampleCodeBehind"
AutoEventWireup="true" %>
The above tag is placed at the beginning of the ASPX file. The CodeFile property of the @ Page directive specifies the file (.cs or .vb or .fs) acting as the code-behind while the Inherits property specifies the Class from which the Page is derived. In this example, the @ Page directive is included in SampleCodeBehind.aspx, then SampleCodeBehind.aspx.cs acts as the code-behind for this page:
using System;
namespace Website
{
public partial class SampleCodeBehind : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("Hello, world");
}
}
}
Imports System
Namespace Website
Public Partial Class SampleCodeBehind
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Response.Write("Hello, world")
End Sub
End Class
End Namespace
In this case, the Page_Load() method is called every time the ASPX page is requested. The programmer can implement event handlers at several stages of the page execution process to perform processing.
User controls
User controls are encapsulations of sections of pages which are registered and used as controls in ASP.NET. User controls are created as ASCX markup files. These files usually contain static (X)HTML markup, as well as markup defining server-side Web controls. These are the locations where the developer can place the required static and dynamic content. A user control is compiled when its containing page is requested and is stored in memory for subsequent requests. User controls have their own events which are handled during the life of ASP.NET requests. An event bubbling mechanism provides the ability to pass an event fired by a user control up to its containing page. Unlike an ASP.NET page, a user control cannot be requested independently; one of its containing pages is requested instead.
Custom controls
Programmers can also build custom controls for ASP.NET applications. Unlike user controls, these controls do not have an ASCX markup file, having all their code compiled into a dynamic link library (DLL) file. Such custom controls can be used across multiple Web applications and Visual Studio projects.
Rendering technique
ASP.NET uses a visited composites rendering technique. During compilation, the template (.aspx) file is compiled into initialization code which builds a control tree (the composite) representing the original template. Literal text goes into instances of the Literal control class, and server controls are represented by instances of a specific control class. The initialization code is combined with user-written code (usually by the assembly of multiple partial classes) and results in a class specific for the page. The page doubles as the root of the control tree.
Actual requests for the page are processed through a number of steps. First, during the initialization steps, an instance of the page class is created and the initialization code is executed. This produces the initial control tree which is now typically manipulated by the methods of the page in the following steps. As each node in the tree is a control represented as an instance of a class, the code may change the tree structure as well as manipulate the properties/methods of the individual nodes. Finally, during the rendering step a visitor is used to visit every node in the tree, asking each node to render itself using the methods of the visitor. The resulting HTML output is sent to the client.
After the request has been processed, the instance of the page class is discarded and with it the entire control tree. This is a source of confusion among novice ASP.NET programmers who rely on class instance members that are lost with every page request/response cycle.
State management
ASP.NET applications are hosted by a Web server and are accessed using the stateless HTTP protocol. As such, if an application uses stateful interaction, it has to implement state management on its own. ASP.NET provides various functions for state management. Conceptually, Microsoft treats "state" as GUI state. Problems may arise if an application needs to keep track of "data state"; for example, a finite-state machine which may be in a transient state between requests (lazy evaluation) or which takes a long time to initialize. State management in ASP.NET pages with authentication can make Web scraping difficult or impossible.
Application
Application state is held by a collection of shared user-defined variables. These are set and initialized when the Application_OnStart event fires on the loading of the first instance of the application and are available until the last instance exits. Application state variables are accessed using the Applications collection, which provides a wrapper for the application state. Application state variables are identified by name.[12]
Session state
Server-side session state is held by a collection of user-defined session variables that are persistent during a user session. These variables, accessed using the Session collection, are unique to each session instance. The variables can be set to be automatically destroyed after a defined time of inactivity even if the session does not end. Client-side user session is maintained by either a cookie or by encoding the session ID in the URL itself.[12]
ASP.NET supports three modes of persistence for server-side session variables:[12]
In-Process Mode
The session variables are maintained within the ASP.NET process. This is the fastest way; however, in this mode the variables are destroyed when the ASP.NET process is recycled or shut down.
ASPState Mode
ASP.NET runs a separate Windows service that maintains the state variables. Because state management happens outside the ASP.NET process, and because the ASP.NET engine accesses data using .NET Remoting, ASPState is slower than In-Process. This mode allows an ASP.NET application to be load-balanced and scaled across multiple servers. Because the state management service runs independently of ASP.NET, the session variables can persist across ASP.NET process shutdowns. However, since session state server runs as one instance, it is still one point of failure for session state. The session-state service cannot be load-balanced, and there are restrictions on types that can be stored in a session variable.
SqlServer Mode
State variables are stored in a database, allowing session variables to be persisted across ASP.NET process shutdowns. The main advantage of this mode is that it allows the application to balance load on a server cluster, sharing sessions between servers. This is the slowest method of session state management in ASP.NET.
View state
View state refers to the page-level state management mechanism, utilized by the HTML pages emitted by ASP.NET applications to maintain the state of the Web form controls and widgets. The state of the controls is encoded and sent to the server at every form submission in a hidden field known as __VIEWSTATE. The server sends back the variable so that when the page is re-rendered, the controls render at their last state. At the server side, the application may change the viewstate, if the processing requires a change of state of any control. The states of individual controls are decoded at the server, and are available for use in ASP.NET pages using the ViewState collection.[13] [14]
The main use for this is to preserve form information across postbacks. View state is turned on by default and normally serializes the data in every control on the page regardless of whether it is actually used during a postback. This behavior can (and should) be modified, however, as View state can be disabled on a per-control, per-page, or server-wide basis.
Developers need to be wary of storing sensitive or private information in the View state of a page or control, as the base64 string containing the view state data can easily be de-serialized. By default, View state does not encrypt the __VIEWSTATE value. Encryption can be enabled on a server-wide (and server-specific) basis, allowing for a certain level of security to be maintained.[15]
Server-side caching
ASP.NET offers a "Cache" object that is shared across the application and can also be used to store various objects. The "Cache" object holds the data only for a specified amount of time and is automatically cleaned after the session time-limit elapses.
Other
Other means of state management that are supported by ASP.NET are cookies, caching, and using the query string.
Template engine
When first released, ASP.NET lacked a template engine. Because the .NET Framework is object-oriented and allows for inheritance, many developers would define a new base class that inherits from "System.Web.UI.Page", write methods there that render HTML, and then make the pages in their application inherit from this new class. While this allows for common elements to be reused across a site, it adds complexity and mixes source code with markup. Furthermore, this method can only be visually tested by running the application - not while designing it. Other developers have used include files and other tricks to avoid having to implement the same navigation and other elements in every page.
ASP.NET 2.0 introduced the concept of "master pages", which allow for template-based page development. A Web application can have one or more master pages, which, beginning with ASP.NET 2.0, can be nested.[16] Master templates have place-holder controls, called ContentPlaceHolders to denote where the dynamic content goes, as well as HTML and JavaScript shared across child pages.
Child pages use those ContentPlaceHolder controls, which must be mapped to the place-holder of the master page that the content page is populating. The rest of the page is defined by the shared parts of the master page, much like a mail merge in a word processor. All markup and server controls in the content page must be placed within the ContentPlaceHolder control.
When a request is made for a content page, ASP.NET merges the output of the content page with the output of the master page, and sends the output to the user.
The master page remains fully accessible to the content page. This means that the content page may still manipulate headers, change title, configure caching etc. If the master page exposes public properties or methods (e.g. for setting copyright notices) the content page can use these as well.
Directory structure
In general, the ASP.NET directory structure can be determined by the developer's preferences. Apart from a few reserved directory names, the site can span any number of directories. The structure is typically reflected directly in the URLs. Although ASP.NET provides means for intercepting the request at any point during processing, the developer is not forced to funnel requests through a central application or front controller.
The special directory names (from ASP.NET 2.0 on) are:[19]
App_Code
This is the "raw code" directory. The ASP.NET server automatically compiles files (and subdirectories) in this folder into an assembly which is accessible in the code of every page of the site. App_Code will typically be used for data access abstraction code, model code and business code. Also any site-specific http handlers and modules and Web service implementation go in this directory. As an alternative to using App_Code the developer may opt to provide a separate assembly with precompiled code.
App_Data
The App_Data ASP.NET Directory is the default directory for any database used by the ASP.NET Website. These databases might include Access (mdb) files or SQL Server (mdf) files. The App_Data is the only directory with Write Access enabled for the ASP.NET web application.:[20]
App_LocalResources
E.g. a file called CheckOut.aspx.fr-FR.resx holds localized resources for the French version of the CheckOut.aspx page. When the UI culture is set to French, ASP.NET will automatically find and use this file for localization.
App_GlobalResources
Holds resx files with localized resources available to every page of the site. This is where the ASP.NET developer will typically store localized messages etc. which are used on more than one page.
App_Themes
Adds a folder that holds files related to themes which is a new ASP.NET feature that helps ensure a consistent appearance throughout a Web site and makes it easier to change the Web site’s appearance when necessary.
App_WebReferences
holds discovery files and WSDL files for references to Web services to be consumed in the site.
Bin
Contains compiled code (.dll files) for controls, components, or other code that you want to reference in your application. Any classes represented by code in the Bin folder are automatically referenced in your application.
[edit]
Performance
ASP.NET aims for performance benefits over other script-based technologies (including Classic ASP) by compiling the server-side code to one or more DLL files on the Web server.[21] This compilation happens automatically the first time a page is requested (which means the developer need not perform a separate compilation step for pages). This feature provides the ease of development offered by scripting languages with the performance benefits of a compiled binary. However, the compilation might cause a noticeable but short delay to the Web user when the newly-edited page is first requested from the Web server, but will not again unless the page requested is updated further.
The ASPX and other resource files are placed in a virtual host on an Internet Information Services server (or other compatible ASP.NET servers; see Other implementations, below). The first time a client requests a page, the .NET Framework parses and compiles the file(s) into a .NET assembly and sends the response; subsequent requests are served from the DLL files. By default ASP.NET will compile the entire site in batches of 1000 files upon first request. If the compilation delay is causing problems, the batch size or the compilation strategy may be tweaked.
Developers can also choose to pre-compile their "codebehind" files before deployment, using MS Visual Studio, eliminating the need for just-in-time compilation in a production environment. This also eliminates the need of having the source code on the Web server. It also supports pre-compile text.
[edit]
Extension
Microsoft has released some extension frameworks that plug into ASP.NET and extend its functionality. Some of them are:
ASP.NET AJAX
An extension with both client-side as well as server-side components for writing ASP.NET pages that incorporate AJAX functionality.
ASP.NET MVC Framework
An extension to author ASP.NET pages using the MVC architecture.
[edit]
ASP.NET compared with ASP classic
ASP.NET simplifies developers' transition from Windows application development to Web development by offering the ability to build pages composed of controls similar to a Windows user interface. A Web control, such as a button or label, functions in very much the same way as its Windows counterparts: code can assign its properties and respond to its events. Controls know how to render themselves: whereas Windows controls draw themselves to the screen, Web controls produce segments of HTML and JavaScript which form parts of the resulting page sent to the end-user's browser.
ASP.NET encourages the programmer to develop applications using an event-driven GUI model, rather than in conventional Web-scripting environments like ASP and PHP. The framework combines existing technologies such as JavaScript with internal components like "ViewState" to bring persistent (inter-request) state to the inherently stateless Web environment.
Other differences compared to ASP classic are:
Compiled code means applications run faster with more design-time errors trapped at the development stage.
Significantly improved run-time error handling, making use of exception handling using try-catch blocks.
Similar metaphors to Microsoft Windows applications such as controls and events.
An extensive set of controls and class libraries allows the rapid building of applications, plus user-defined controls allow commonly-used Web template, such as menus. Layout of these controls on a page is easier because most of it can be done visually in most editors.
ASP.NET uses the multi-language abilities of the .NET Common Language Runtime, allowing Web pages to be coded in VB.NET, C#, J#, Delphi.NET, Chrome, etc.
Ability to cache the whole page or just parts of it to improve performance.
Ability to use the code-behind development model to separate business logic from presentation.
Ability to use true object-oriented design for programming pages and controls
If an ASP.NET application leaks memory, the ASP.NET runtime unloads the AppDomain hosting the erring application and reloads the application in a new AppDomain.
Session state in ASP.NET can be saved in a Microsoft SQL Server database or in a separate process running on the same machine as the Web server or on a different machine. That way session values are not lost when the Web server is reset or the ASP.NET worker process is recycled.
Versions of ASP.NET prior to 2.0 were criticized for their lack of standards compliance. The generated HTML and JavaScript sent to the client browser would not always validate against W3C/ECMA standards. In addition, the framework's browser detection feature sometimes incorrectly identified Web browsers other than Microsoft's own Internet Explorer as "downlevel" and returned HTML/JavaScript to these clients with some of the features removed, or sometimes crippled or broken. In version 2.0 however, all controls generate valid HTML 4.0, XHTML 1.0 (the default) or XHTML 1.1 output, depending on the site configuration. Detection of standards-compliant Web browsers is more robust and support for Cascading Style Sheets is more extensive.
Web Server Controls: these are controls introduced by ASP.NET for providing the UI for the Web form. These controls are state managed controls and are WYSIWYG controls.
Friday, May 14, 2010
S.Sc Result In Bangladesh
Hi how are u ? are u eager to know your result.
Click Here and mind fresh
Thursday, September 10, 2009
HIV: Domestic HIV/AIDS
Domestic HIV/AIDS
Through the Elizabeth Glaser Scientist Award, the International Leadership Award, and other research and training grants, the Foundation maintains its commitment to cutting-edge research with the goal of ultimately eradicating pediatric AIDS. While great strides have been made since the early days of the epidemic, the special needs of children and youth with HIV/AIDS are still too often overlooked. To give them the best possible chance for a healthy future, we must ensure that their specific prevention, care, and treatment needs are appropriately addressed.
The Ryan White CARE Act
The Foundation has long supported prevention, care, and treatment programs aimed at women, children, and families affected by HIV/AIDS. Innovative initiatives like these were included in the groundbreaking Ryan White CARE Act, which was passed in 1990. Since the Act was successfully passed, one of the Foundation's main domestic advocacy goals has been to maintain congressional support for the funding of these programs within the CARE Act.Next to the Medicaid program, the Ryan White Comprehensive AIDS Resources Emergency (CARE) Act is the largest federal investment in the care and treatment of people living with HIV/AIDS in the United States, providing services to approximately 533,000 low-income, HIV-positive individuals. First enacted in 1990, the CARE Act supports a wide range of community-based services, including primary and home health care, case management, substance abuse treatment, mental health services, and nutritional services.
As part of the creation of the CARE Act, the Foundation successfully advocated for the inclusion of a program to help women and children with HIV/AIDS participate in clinical trials of new therapies. This program would later become part of Title IV of the CARE Act during the reauthorization of the legislation in 1996.
Today, Title IV provides medical care, support services, case management, outreach, and other services to women, children, and families affected by HIV/AIDS. Through its family-centered approach to providing care and treatment, Title IV is saving lives, improving quality of life by keeping people healthier, and saving money by reducing hospitalizations. Title IV projects have also led the way in reducing mother-to-child transmission of HIV from more than 2,000 babies born HIV-positive each year to fewer than 200 per year. In addition, Title IV programs help link women and children to opportunities to participate in cutting-edge HIV/AIDS clinical research.
HIV Testing of Pregnant Women and Newborns
Currently, more than 3,700 children and youth in the United States under the age of 13 are living with HIV and AIDS. Of the 40,000 Americans newly infected with HIV every year, half are under 25 years of age. While the discovery of effective drug therapies for preventing mother-to-child transmission of HIV has reduced the number of infected babies born in the United States to less than 200 a year, each infection represents a tragedy that could have been averted.Without medical intervention, an HIV-infected woman has about a one-in-four chance of giving birth to an HIV-infected baby. However, as a direct result of HIV testing and preventative therapies, the risk of HIV transmission from mothers to their infants in the United States has been dramatically reduced to less than two percent. The Foundation strongly believes we must continue to work toward further reductions in mother-to-child transmission of HIV. As recommended by the Centers for Disease Control and Prevention (CDC) and the Institute of Medicine (IOM), the Foundation endorses the voluntary, routine, and universal HIV testing of pregnant women as a means of increasing testing rates and further reducing transmission from a mother to her newborn.
Pediatric HIV/AIDS Research
In keeping with Elizabeth Glaser’s legacy, the Foundation advocates for a strong U.S. commitment to domestic pediatric HIV/AIDS research programs, including those funded at the National Institutes of Health (NIH).
From its inception, the Foundation has had a long history of advocating for increased funding for pediatric HIV/AIDS research. In October 1989, the Foundation advocated for and secured $10 million for basic pediatric HIV/AIDS research at the National Institutes of Health (NIH) – marking the first time government funds were ever specified for basic biomedical pediatric HIV/AIDS research. The following year, the FY 1991 Labor-HHS appropriations bill included $20 million for pediatric HIV/AIDS basic research, an increase of $10 million over the previous year. An additional $23.8 million was also appropriated for important pediatric clinical trials.
Building on this legacy of achievement, critical pediatric HIV/AIDS research remains a priority for the Foundation. As we marvel at the progress that has been made in pediatric AIDS, it is important to remember the long battle ahead for the young people infected with HIV. The unique medical and social challenges that these young adults face is highlighted in a June 2005 New York Times article, "Their Unexpected Adolescence."
Many adolescents and young adults are already resistant to existing medications and are waiting for new drugs that can keep the virus in check. These young people are also entering uncharted medical territory with potential problems unknown to even the most experienced AIDS researchers. Additional research is needed into the long-term health implications of drug treatment on these children and young adults, including their psychological and social needs, and appropriately targeted prevention services. In addition, through the use of preventive drug regimens, many children born to HIV-positive mothers were uninfected. As this population of HIV-exposed children grows, more research is needed into the long-term health effects of the exposure of these children to preventive drug regimens
HIV :Improving Access to AIDS Treatment

As programs to provide care and treatment are being rapidly expanded, many of the 2.2 million HIV-infected children living in resource-poor countries are at serious risk of being left behind. Less than one percent of these children are receiving lifesaving care and treatment. Without it, 50 percent of children born with HIV will die before age two and the majority will die before age five. In 2004 alone, HIV/AIDS was responsible for the deaths of 510,000 children worldwide.
Because children are not just small adults, providing HIV care and treatment presents special challenges. These include the scarcity of programs offering a full continuum of care, from prevention to treatment; the shortage of health care providers trained in diagnosing and treating pediatric HIV/AIDS; limited access to diagnostic equipment suitable for the youngest children; the lack of drug formulations and dosing guidelines tailored to children's needs; the high cost of those drugs that are tested for children, and the lack of a common commitment to specific pediatric treatment targets. The Foundation is committed to helping HIV-infected children live long and healthy lives, and is leading the effort to accelerate the United States' assistance to children living with AIDS around the world.
HIV: Inclusion of Children in HIV/AIDS Vaccine Trials
HIV: Inclusion of Children in HIV/AIDS Vaccine Trials
History suggests that a vaccine may prove to be the most effective, affordable, long-term approach to stopping the spread of HIV. However, some of the populations hardest hit by the pandemic — infants and youth — are at risk of being left behind in the search for an effective vaccine against the HIV virus. To date, children and youth have been included in only a very small number of HIV vaccine trials.
More than 1,000 children are infected with HIV every day, the vast majority through mother-to-child transmission (MTCT). While effective, low-cost MTCT interventions exist and work to dramatically reduce newborn infection rates, the lack of a vaccine still places infants at risk of contracting HIV through breast-feeding.
Since 1988, the Foundation has provided $10 million to support 41 separate studies related to pediatric vaccine research. In May 2007, the Foundation was awarded a five-year, $9.7 million grant from the Gates Foundation to significantly expand its critical vaccine research. The HIV vaccine program supported by the grant will be the first of its kind to support basic research and clinical trials specific to breast-feeding infants.
As this promising research effort advances, the Foundation is also working to educate Congress and the administration about the importance of vaccine research as a critical preventive strategy in the battle against HIV/AIDS and the need to ensure that the special needs of children are not overlooked in the quest for an effective HIV/AIDS vaccine.
Wednesday, September 9, 2009
Prevention of Swine Flu Influenza Virus
Prevention
Swine Fle( Swine influenza) :Signs and symptoms
Classification Of swine flu
Swine Fle( Swine influenza) history
Swine influenza was first proposed to be a disease related to human influenza during the 1918 flu pandemic, when pigs became sick at the same time as humans.[16] The first identification of an influenza virus as a cause of disease in pigs occurred about ten years later, in 1930.[17] For the following 60 years, swine influenza strains were almost exclusively H1N1. Then, between 1997 and 2002, new strains of three different subtypes and five different genotypes emerged as causes of influenza among pigs in North America. In 1997-1998, H3N2 strains emerged. These strains, which include genes derived by reassortment from human, swine and avian viruses, have become a major cause of swine influenza in North America. Reassortment between H1N1 and H3N2 produced H1N2. In 1999 in Canada, a strain of H4N6 crossed the species barrier from birds to pigs, but was contained on a single farm.[17]
The H1N1 form of swine flu is one of the descendants of the strain that caused the 1918 flu pandemic.[18][19] As well as persisting in pigs, the descendants of the 1918 virus have also circulated in humans through the 20th century, contributing to the normal seasonal epidemics of influenza.[19] However, direct transmission from pigs to humans is rare, with only 12 cases in the U.S. since 2005.[20] Nevertheless, the retention of influenza strains in pigs after these strains have disappeared from the human population might make pigs a reservoir where influenza viruses could persist, later emerging to reinfect humans once human immunity to these strains has waned.[21]
Swine flu has been reported numerous times as a zoonosis in humans, usually with limited distribution, rarely with a widespread distribution. Outbreaks in swine are common and cause significant economic losses in industry, primarily by causing stunting and extended time to market. For example, this disease costs the British meat industry about £65 million every year.[22]
1918 pandemic in humans
The 1918 flu pandemic in humans was associated with H1N1 and influenza appearing in pigs;[19] this may reflect a zoonosis either from swine to humans, or from humans to swine. Although it is not certain in which direction the virus was transferred, some evidence suggests that, in this case, pigs caught the disease from humans.[16] For instance, swine influenza was only noted as a new disease of pigs in 1918, after the first large outbreaks of influenza amongst people.[16] Although a recent phylogenetic analysis of more recent strains of influenza in humans, birds, and swine suggests that the 1918 outbreak in humans followed a reassortment event within a mammal,[23] the exact origin of the 1918 strain remains elusive.[24] It is estimated that anywhere from 50 to 100 million people were killed worldwide.[19][25]
1976 U.S. outbreakMain article: 1976 swine flu outbreak

On February 5, 1976, in the United States an army recruit at Fort Dix said he felt tired and weak. He died the next day and four of his fellow soldiers were later hospitalized. Two weeks after his death, health officials announced that the cause of death was a new strain of swine flu. The strain, a variant of H1N1, is known as A/New Jersey/1976 (H1N1). It was detected only from January 19 to February 9 and did not spread beyond Fort Dix.[26] President Ford receives swine flu vaccination
This new strain appeared to be closely related to the strain involved in the 1918 flu pandemic. Moreover, the ensuing increased surveillance uncovered another strain in circulation in the U.S.: A/Victoria/75 (H3N2) spread simultaneously, also caused illness, and persisted until March.[26] Alarmed public-health officials decided action must be taken to head off another major pandemic, and urged President Gerald Ford that every person in the U.S. be vaccinated for the disease.[27]
The vaccination program was plagued by delays and public relations problems.[28] On October 1, 1976, the immunization program began. That same day, three senior citizens died soon after receiving their swine flu shots and there was a media outcry linking the deaths to the immunizations, despite the lack of positive proof. According to science writer Patrick Di Justo, however, by the time the truth was known—that the deaths were not proven to be related to the vaccine—it was too late. "The government had long feared mass panic about swine flu—now they feared mass panic about the swine flu vaccinations." This became a strong setback to the program.[29]
There were reports of Guillain-Barré syndrome, a paralyzing neuromuscular disorder, affecting some people who had received swine flu immunizations. This syndrome is a rare side-effect of modern influenza vaccines, with an incidence of about one case per million vaccinations.[30] As a result, Di Justo writes that "the public refused to trust a government-operated health program that killed old people and crippled young people." In total, 48,161,019 Americans, or just over 22% of the population, had been immunized by the time the National Influenza Immunization Program (NIIP) was effectively halted on December 16, 1976.[31] [32]
Overall, there were 1098 cases of Guillain-Barré Syndrome (GBS) recorded nationwide by CDC surveillance, 532 of which were linked to the NIIP vaccination, resulting in death from severe pulmonary complications for 25 people, which, according to Dr. P. Haber, were probably caused by an immunopathological reaction to the 1976 vaccine. Other influenza vaccines have not been linked to GBS, though caution is advised for certain individuals, particularly those with a history of GBS. [33] [34][35] Still, as observed by a participant in the immunization program, the vaccine killed more Americans than the disease did.[36]
1988 zoonosis
In September 1988, a swine flu virus killed one woman and infected others. 32-year old Barbara Ann Wieners was eight months pregnant when she and her husband, Ed, became ill after visiting the hog barn at a county fair in Walworth County, Wisconsin. Barbara died eight days later, after developing pneumonia.[37] The only pathogen identified was an H1N1 strain of swine influenza virus.[38] Doctors were able to induce labor and deliver a healthy daughter before she died. Her husband recovered from his symptoms.
Influenza-like illness (ILI) was reportedly widespread among the pigs exhibited at the fair. 76% of 25 swine exhibitors aged 9 to 19 tested positive for antibody to SIV, but no serious illnesses were detected among this group. Additional studies suggested between one and three health care personnel who had contact with the patient developed mild influenza-like illnesses with antibody evidence of swine flu infection. However, there was no community outbreak.[39][40]
In 1998, swine flu was found in pigs in four U.S. states. Within a year, it had spread through pig populations across the United States. Scientists found that this virus had originated in pigs as a recombinant form of flu strains from birds and humans. This outbreak confirmed that pigs can serve as a crucible where novel influenza viruses emerge as a result of the reassortment of genes from different strains.[41][42][43]
2007 Philippine outbreak in swine Please help improve this article by expanding it. Further information might be found on the talk page. (April 2009)
On August 20, 2007 Department of Agriculture officers investigated the outbreak (epizootic) of swine flu in Nueva Ecija and Central Luzon, Philippines. The mortality rate is less than 10% for swine flu, unless there are complications like hog cholera. On July 27, 2007, the Philippine National Meat Inspection Service (NMIS) raised a hog cholera "red alert" warning over Metro Manila and 5 regions of Luzon after the disease spread to backyard pig farms in Bulacan and Pampanga, even if these tested negative for the swine flu virus.[44][45]
2009 outbreak in humansMain article: 2009 flu pandemic
The H1N1 viral strain implicated in the 2009 flu pandemic among humans often is called "swine flu" because initial testing showed many of the genes in the virus were similar to influenza viruses normally occurring in North American swine.[46] But further research has shown that the outbreak is due to a new strain of H1N1 not previously reported in pigs.
In late April, Margaret Chan, the World Health Organization's director-general, declared a "public health emergency of international concern" under the rules of the WHO's new International Health Regulations when the first cases of the H1N1 virus were reported in the United States.[47] [48] Following the outbreak, on May 2, 2009, it was reported in pigs at a farm in Alberta, Canada, with a link to the outbreak in Mexico. The pigs are suspected to have caught this new strain of virus from a farm worker who recently returned from Mexico, then showed symptoms of an influenza-like illness.[49] These are probable cases, pending confirmation by laboratory testing.
The new strain was initially described as an apparent reassortment of at least four strains of influenza A virus subtype H1N1, including one strain endemic in humans, one endemic in birds, and two endemic in swine.[46] Subsequent analysis suggested it was a reassortment of just two strains, both found in swine.[50] Although initial reports identified the new strain as swine influenza (i.e., a zoonosis originating in swine), its origin is unknown. Several countries took precautionary measures to reduce the chances for a global pandemic of the disease.[51] The 2009 swine flu has been compared to other similar types of influenza virus in terms of mortality: "in the US it appears that for every 1000 people who get infected, about 40 people need admission to hospital and about one person dies".[52]. There are fears that swine flu will become a major global pandemic in the winter months, with many countries planning major vaccination campaigns. [53]
Swine Fle( Swine influenza)
Swine influenza
Influenza (flu)2009 flu pandemic (Swine flu)VirusAvian influenzaSwine influenzaFlu Swine influenza (also called swine flu, hog flu, and pig flu) is an infection by any one of several types of swine influenza virus. Swine influenza virus (SIV) is any strain of the influenza family of viruses that is endemic in pigs.[2] As of 2009, the known SIV strains include influenza C and the subtypes of influenza A known as H1N1, H1N2, H3N1, H3N2, and H2N3.
Swine influenza virus is common throughout pig populations worldwide. Transmission of the virus from pigs to humans is not common and does not always lead to human influenza, often resulting only in the production of antibodies in the blood. If transmission does cause human influenza, it is called zoonotic swine flu. People with regular exposure to pigs are at increased risk of swine flu infection. The meat of an infected animal poses no risk of infection when properly cooked.
During the mid-20th century, identification of influenza subtypes became possible, allowing accurate diagnosis of transmission to humans. Since then, only 50 such transmissions have been confirmed. These strains of swine flu rarely pass from human to human. Symptoms of zoonotic swine flu in humans are similar to those of influenza and of influenza-like illness in general, namely chills, fever, sore throat, muscle pains, severe headache, coughing, weakness and general discomfort.
Friday, July 31, 2009
Free down Load
Free Software Downloads and Reviews - Download.com
Games
MP3 & Audio Software
Video Software Most Popular
Mobile
Security software
Avira AntiVir Personal
Most Popular
More results from cnet.com »
Free Downloads Center - software and free game downloads
Wednesday, July 22, 2009
Sunday, July 19, 2009
Sports
eSports
Greetings and welcome to eSports. On these pages you will find the writing of some talented people who all have one thing in common - they love sports and ...
www.e-sports.com/ - Cached - SimilarRecession hitting average fan hard
House and Rockets, Lakers turn ...
College or a Six-Figure Salary
NCAA Graduation Rates Higher ... Volleyball
High School
John Berkovich
Keith Hayes
More results from e-sports.com »
Electronic sports - Wikipedia, the free encyclopedia
Electronic sports, abbreviated e-sports or eSports, is used as a general term to ... The first ever televised eSports event has been noted as the Australian ...
en.wikipedia.org/wiki/Electronic_sports - Cached - Similar
GotFrag eSports - Competitive Gaming News, Features, Movies ...
GotFrag eSports delivers the latest news, innovative features, in-depth interviews community-driven forums and insightful editorials to a growing community ...
www.gotfrag.com/ - Cached - Similar
ESEA Premium
Play Counter-Strike 1.6, Counter-Strike: Source, and Team Fortress 2 in a cheat free environment and compete to win cash and prizes.
www.esportsea.com/ - Cached - Similar
eSports Award 2009
At the end of August the greatest achievements within eSports since the last award are going to be honored. With the nominations of the sixth eSports Awards ...
www.esports-award.org/home/news/93981/ - Cached - Similar
eSports Award 2009
The eSports Award is the most prestigious accolade available in eSports. The Award is designed to give athletes, teams, journalists and developers involved ...
www.esports-award.org/ - Cached - Similar
More results from www.esports-award.org »
ESL: Electronic Sports League - The eSports Gaming League
ESL Europe - Electronic Sports League - online gaming league.
www.esl.eu/ - Cached - Similar
e-Sports in Korea [Monocle]
One of the by-products of South Korea's broadband boom has been the creation of an online gaming culture unlike anything seen anywhere else.
www.monocle.com/sections/culture/Web.../E-sports-in-Korea/ - Cached - Similar
Nacionālais sporta portāls – eSports.lv - [ Translate this page ]
Sporta vortāls. Jaunumi, sporta ziņas, fotogrāfijas un notikumu apskats, ziņu arhīvs un tematiskais katalogs.
esports.lv/ - Similar
Antwerp eSports Festival
Welcome to the website of the Antwerp eSports Festival. The Antwerp eSports Festival is the most exclusive tournament of the Benelux featuring both Call of ...
www.esportsfestival.com/ - Cached - Similar
Searches related to: esportsesports gaming esea esports esl esports strike e sport
esport warcraft inferno esports esports league esport sk
1 2 3 4 5 6 7 8 9 10 Next








