Example #1
0
 protected void btnInsertClickLink_Click(object sender, EventArgs e)
 {
     LinkDetail objLinkdetail = new LinkDetail(ConnectionString);
     objLinkdetail.LinkName = txtLinkName.Text;
     objLinkdetail.LinkURL = txtClickLinks.Text;
     objLinkdetail.RecordClicks = true;
     int Id = objLinkdetail.InsertandReturnPrimaryKey();
     hdLinkId.Value = Id.ToString();
     hdLinkName.Value = txtLinkName.Text.ToString();
     //hdLinkId.Value = txtClickLinks.Text.ToString();
 }
Example #2
0
 protected void btnInsertClickLink_Click(object sender, EventArgs e)
 {
     LinkDetail objLinkdetail = new LinkDetail(ConnectionString);
     objLinkdetail.LinkName = txtLinkName.Text;
     if (txtClickLinks.Text.Contains("http://"))
         objLinkdetail.LinkURL = txtClickLinks.Text;
     else
         objLinkdetail.LinkURL = "http://" + txtClickLinks.Text;
     objLinkdetail.RecordClicks = true;
     int Id = objLinkdetail.InsertandReturnPrimaryKey();
     hdLinkId.Value = Id.ToString();
     hdLinkName.Value = txtLinkName.Text.ToString();
     //hdLinkId.Value = txtClickLinks.Text.ToString();
     ClientScriptManager cs = Page.ClientScript;
     cs.RegisterStartupScript(this.GetType(), "ValError", "insertLink();", true);
 }
Example #3
0
 private string CreateClickThroughID(string href, string clickthroughName, string ConnectionString)
 {
     if (href.Contains("http:"))
     {
         LinkDetail objLinkdetail = new LinkDetail(ConnectionString);
         objLinkdetail.LinkName = clickthroughName;
         objLinkdetail.LinkURL = href;
         objLinkdetail.RecordClicks = true;
         int Id = objLinkdetail.InsertandReturnPrimaryKey();
         return Id.ToString();
     }
     return "";
 }
Example #4
0
        /// <summary>
        /// Populates the fields for multiple objects from the columns found in an open reader.
        /// </summary>
        ///
        /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param>
        ///
        /// <returns>Object of LinkDetails</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/16/2009 3:09:15 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static LinkDetails PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper, string ConnectionString)
        {
            LinkDetails list = new LinkDetails();

            if (rdr.Read())
            {
                LinkDetail obj = new LinkDetail(ConnectionString);
                PopulateObjectFromReader(obj, rdr);
                list.Add(obj);
                while (rdr.Read())
                {
                    obj = new LinkDetail(ConnectionString);
                    PopulateObjectFromReader(obj, rdr);
                    list.Add(obj);
                }
                oDatabaseHelper.Dispose();
                return list;
            }
            else
            {
                oDatabaseHelper.Dispose();
                return null;
            }
        }
Example #5
0
        /// <summary>
        /// Populates the fields for multiple objects from the columns found in an open reader.
        /// </summary>
        ///
        /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param>
        ///
        /// <returns>Object of LinkDetails</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/16/2009 3:09:15 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static LinkDetails PopulateObjectsFromReader(IDataReader rdr, string ConnectionString)
        {
            LinkDetails list = new LinkDetails();

            while (rdr.Read())
            {
                LinkDetail obj = new LinkDetail(ConnectionString);
                PopulateObjectFromReader(obj, rdr);
                list.Add(obj);
            }
            return list;
        }
Example #6
0
        /// <summary>
        /// This method will return an object representing the record matching the primary key information specified.
        /// </summary>
        ///
        /// <param name="pk" type="LinkDetailPrimaryKey">Primary Key information based on which data is to be fetched.</param>
        ///
        /// <returns>object of class LinkDetail</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			12/16/2009 3:09:15 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static LinkDetail SelectOne(LinkDetailPrimaryKey pk, string ConnectionString)
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper(ConnectionString);
            bool ExecutionState = false;

            // Pass the values of all key parameters to the stored procedure.
            System.Collections.Specialized.NameValueCollection nvc = pk.GetKeysAndValues();
            foreach (string key in nvc.Keys)
            {
                oDatabaseHelper.AddParameter("@" + key, nvc[key]);
            }
            // The parameter '@ErrorCode' will contain the status after execution of the stored procedure.
            oDatabaseHelper.AddParameter("@ErrorCode", -1, System.Data.ParameterDirection.Output);

            IDataReader dr = oDatabaseHelper.ExecuteReader("sp_LinkDetails_SelectbyPrimaryKey", ref ExecutionState);
            if (dr.Read())
            {
                LinkDetail obj = new LinkDetail(ConnectionString);
                PopulateObjectFromReader(obj, dr);
                dr.Close();
                oDatabaseHelper.Dispose();
                return obj;
            }
            else
            {
                dr.Close();
                oDatabaseHelper.Dispose();
                return null;
            }
        }