do any one help me implemnting omniture sitecatalyst for my .net application
regards
Ravinder
regards
Ravinder
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
raviPosted Dec 19, 2008, 6:38 AM
ihave to implement sitecatalyst imean basic implementation where it give sitecatalyst reports. so i have to add simply 2 files which are provided by omniture. but i cann't get all the data because i don't have body tags through out my website.ihave them only on my master pages now i am wandering how do we do to see the reports on each page.hope i met what you are looking for.
regards
Ravinder
Bechir BejaouiPosted Dec 18, 2008, 6:42 PM
raviPosted Dec 18, 2008, 1:22 AM
no i dnt want that piece of code .i am sorry if i mis lead you in excel they gave me some examples
regards
Ravinder
Bechir BejaouiPosted Dec 17, 2008, 5:32 PM
OledbConnection oConn = new OledbcConnection();
oConn.ConnectionString = "
";
OledbCommand oComm = new OledbCommand();
oComm.Connection = oConn;
//This gets data from sheet1 from A1 to C3
oComm.CommandText = "Select * From [Sheet1$A1:C3]";
try
{
DataSet ds = new DataSet();
OledbDataAdapter oAdapter = new OledbDataAdapter(oComm);
oConn.Open();
oAdapter.Fill(ds);
dataGridView1.DataSource = ds;
dataGridView1.DataMember = ds.Tables[0].TableName;
label1.Text = "Connection established successfully!!!";
}
catch (IOException caught) { MessageBox.Show(caught.Message); }
catch (OledbException caught) { MessageBox.Show(caught.Message); }
finally
{
oConn.Close();
}
raviPosted Dec 17, 2008, 11:12 AM
well they gave me 2 code files (js file and othe is piece of code which i should copy in the body tag) and they gave 1 excel sheet where it has some variables and i need to implement it on the website which is developed on .net 2.0 and i have these master pages. how do i implement it on all the other pages if i want to get get some data
Bechir BejaouiPosted Dec 16, 2008, 5:59 PM