you can also use javascript validation controls for it
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
you can also use javascript validation controls for it
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
You can also use java script analog control from dynamicdrive.com
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
you can scrap the data from that site and show it on your site.
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
Please try to use javascript , it will take less time.
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
sorry i never do this so no idea.
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
Use this function
public static DataTable getDataTable(string strFilename)
{
string SQL = "select * from [Sheet1$]";
string connectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + strFilename + ";";
connectionString += @"Extended Properties=""Excel 12.0;HDR=YES;""";
OleDbConnection conn = new OleDbConnection(connectionString);
OleDbCommand cmd = new OleDbCommand(SQL, conn);
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter(cmd);
da.Fill(dt);
da.Dispose();
conn.Dispose();
cmd.Dispose();
return dt;
}
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
you can use microsoft chart control for graphs in dotnet applications
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
use this function
public static DataTable GetDataTableFromExcel(string SourceFilePath)
{
string ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=" + SourceFilePath + ";" +
"Extended Properties=Excel 8.0;";
using (OleDbConnection cn = new OleDbConnection(ConnectionString))
{
cn.Open();
DataTable dbSchema = cn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
if (dbSchema == null || dbSchema.Rows.Count < 1)
{
throw new Exception("Error: Could not determine the name of the first worksheet.");
}
string WorkSheetName = dbSchema.Rows\[0\]\["TABLE\_NAME"\].ToString();
OleDbDataAdapter da = new OleDbDataAdapter("SELECT \* FROM \[" + WorkSheetName + "\]", cn);
DataTable dt = new DataTable(WorkSheetName);
da.Fill(dt);
return dt;
}
}
This will return you datatable after that with the help of loop insert it into database
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
Please clear what you want to ask...
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
You have to search Codeproject Article, here are many articles from them you can inspired for your final year project.
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
put the databinding in !ispostback i.e. if(!ispostback) { ddl.bind(); }
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
what do you want to ask, please explain in detail.
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
first take some search from google and if you face any problem then only ask here, thanks
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
Use this
int checkedCount = 0;
foreach (GridViewRow row in gvData.Rows)
{
bool result = ((CheckBox)row.FindControl("CheckBox1")).Checked;
if (result)
{
return true;
}
else
{
return false;
}
}
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
there is one space in end of this '529042010\All Data 4cr\0.66cr_calicut_1401 ' remove space i.e. you use '529042010\All Data 4cr\0.66cr_calicut_1401'
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
yes you have to do as same as sandeep said.
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
Please explain in detail what adjactly you mean by click in and click out? and what do you want
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
you can zip that pdf then user download it wirhout opening in another browser
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
ohh :) sorry Abhijit....
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !
Each of them have their own services to import contacts,please see on google.com
Gaurav Dudeja http://www.gdinfotechindia.com
Dont be afraid of changing your life to better !