Friday, June 9, 2017
Send Rakhi to India: Send Rakhi to Brother - Rakhi 2017
Send Rakhi to India: Send Rakhi to Brother - Rakhi 2017: India is worldwide famous for its rich culture and tradition and what makes this country a place of joy and happiness, is its endless festivals. Diversity in religion, culture and tradition yet nothing lessens the joy and pleasure in celebration of these festivals.
Saturday, March 7, 2015
MLM Software Solution Jaipur India
MLM Yug is a company offering MLM Software development and Mobile Apps, RD-FD Software, NBFC Management Software, Finance Software provider from India. There are many MLM Software Services in India but we are one of the best MLM Mobile Apps, RD-FD Software, Accounting Software, Inventory- Stock Software, Finance Software to its clients. We are a team of skilled engineers, software developers, designers, MLM plan analysts, quality analysts and consultants having years and years of experience in their respective fields. With our vast experience and deep knowledge of the industry, we are capable of understanding your requirements and converting them into software version.
We are the trusted vendors of those planning to start an MLM business. We understand that the MLM software is the root of any MLM business. Starting an MLM company is quite easy because it does not require any technical skills or IT specialization. Also, we are there to help you with our cutting edge solutions.
Complete MLM Software Solution for Multi Level Network Marketing, Direct Selling Business
MLM Mobile Apps Development, E-Commerce (Shopping Website/ Mobile Apps), Loan Management Software - Personal, Vehicle, NBFC Management Software, Credit Co-operative Society Software, Microfinance Software, Online MLM Software, RD-FD Software - Mini Banking MIS Software, Accounting, Inventory- Stock Software, MLM Business Plans ( Binary, Matrix, Level Plan )
MLM Yug - Multi-level Marketing Software Company
Email: sales@MLMYug.com
Mobile: +91 80032 26860, +91 80032 26859
Website : www.MLMYug.com
Wednesday, April 3, 2013
Create ASP.Net Chart Control from Database using C# Example
Aspx Markup
<asp:Chart ID="Chart1" runat="server" Height="300px" Width="400px" Visible = "false">
<Titles>
<asp:Title ShadowOffset="3" Name="Items" />
</Titles>
<Legends>
<asp:Legend Alignment="Center" Docking="Bottom" IsTextAutoFit="False" Name="Default" LegendStyle="Row" />
</Legends>
<Series>
<asp:Series Name="Default" />
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" BorderWidth="0" />
</ChartAreas>
</asp:Chart>
C#
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
private DataTable GetSampleData()
{
DataTable dt = new DataTable();
dt.Columns.Add("X");
dt.Columns.Add("Y");
dt.Rows.Add("1", "3003");
dt.Rows.Add("2", "72");
dt.Rows.Add("3", "760");
dt.Rows.Add("4", "354");
dt.Rows.Add("5", "180");
dt.Rows.Add("6", "408");
dt.Rows.Add("7", "3003");
dt.Rows.Add("8", "72");
dt.Rows.Add("9", "760");
dt.Rows.Add("10", "354");
dt.Rows.Add("11", "180");
dt.Rows.Add("12", "408");
dt.Rows.Add("13", "3003");
dt.Rows.Add("14", "72");
dt.Rows.Add("15", "760");
dt.Rows.Add("16", "354");
dt.Rows.Add("17", "180");
dt.Rows.Add("18", "408");
dt.Rows.Add("19", "3003");
dt.Rows.Add("20", "72");
dt.Rows.Add("21", "760");
dt.Rows.Add("22", "354");
dt.Rows.Add("23", "180");
dt.Rows.Add("24", "408");
dt.Rows.Add("25", "3003");
dt.Rows.Add("26", "72");
dt.Rows.Add("27", "760");
dt.Rows.Add("28", "354");
dt.Rows.Add("29", "180");
dt.Rows.Add("30", "408");
return dt;
}
protected void Page_Load(object sender, EventArgs e)
{
Chart1.Visible = true;
DataTable dt = GetSampleData();
string[] x = new string[dt.Rows.Count];
int[] y = new int[dt.Rows.Count];
for (int i = 0; i < dt.Rows.Count; i++)
{
x[i] = dt.Rows[i][0].ToString();
y[i] = Convert.ToInt32(dt.Rows[i][1]);
}
Chart1.Series[0].Points.DataBindXY(x, y);
Chart1.Series[1].Points.DataBindXY(x, y);
// Chart1.Series[0].ChartType = SeriesChartType.Bar;
// Chart1.ChartAreas["ChartArea1"].Area3DStyle.Enable3D = true;
Chart1.Legends[0].Enabled = true;
}
Web.Config Modifications
<configuration>
<appSettings>
<addkey="ChartImageHandler"value="storage=file;timeout=20;" />
</appSettings>
<connectionStrings>
<addname="conString"
connectionString="Data Source=.\SQL2005;database=Northwind;Integrated Security=true"/>
</connectionStrings>
<system.web>
<compilationdebug="true"targetFramework="4.0">
<assemblies>
<addassembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</assemblies>
</compilation>
<httpHandlers>
<addpath="ChartImg.axd"verb="GET,HEAD,POST"type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"validate="false"/>
</httpHandlers>
<pages>
<controls>
<addtagPrefix="asp"namespace="System.Web.UI.DataVisualization.Charting"assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>
</system.web>
<system.webServer>
<handlers>
<removename="ChartImageHandler"/>
<addname="ChartImageHandler"preCondition="integratedMode"verb="GET,HEAD,POST"path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</system.webServer>
</configuration>
Tuesday, June 5, 2012
Inventory Management System
Inventory Management System
Inventory Software is absolutely compatible and competent application to deal with inventory management of several commercial and non-commercial industries such as Clothing, Electronic, Aeronautical, Mechanical, Medical, Hotel, Food, Stationary, Shoe, Retail stores, Online Shopping Malls or home business etc. Simply and rapidly handles invoicing, stock management and many more along with customer details via more interactive, user friendly interface. Inventory Software is extremely economical and compliant package for Online .
| |
|
Subscribe to:
Posts
(
Atom
)