Advertisement
| Hall of Fame |
|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: |
SCRIPT:
<script runat="server">
OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Inetpub\\wwwroot\\InsightDatabase\\App_Data\\InsightDatabase.mdb");
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string editFirstName = Session["FirstName"].ToString();
string editLastName = Session["LastName"].ToString();
string editCompany = Session["Company"].ToString();
string editTeam = Session["Team"].ToString();
string editSubteam = Session["Subteam"].ToString();
string editDate = Session["Date"].ToString();
/* Following 6 variables used to hold SQL fragments */
string firstSearch;
string lastSearch;
string companySearch;
string teamSearch;
string subteamSearch;
string dateSearch;
if (editFirstName != "")
{
firstSearch = "AND firstName LIKE '" + editFirstName + "%'";
}
else
{
firstSearch = "";
}
if (editLastName != "")
{
lastSearch = "AND lastName LIKE '" + editLastName + "%'";
}
else
{
lastSearch = "";
}
if (editCompany != "")
{
companySearch = "AND company LIKE '" + editCompany + "%'";
}
else
{
companySearch = "";
}
if (editTeam != "")
{
teamSearch = "AND team LIKE '" + editTeam + "%'";
}
else
{
teamSearch = "";
}
if (editSubteam != "")
{
subteamSearch = "AND subteam LIKE '" + editSubteam + "%'";
}
else
{
subteamSearch = "";
}
if (editDate != "")
{
DateTime date_Convert = new DateTime();
try
{
date_Convert = DateTime.Parse(editDate);
}
catch
{
lbFirstName.Text = "There was an error with the Date selection.<br />";
lbFirstName.Visible = true;
}
dateSearch = "AND [date] = #" + date_Convert + "#";
}//Close of if "editDate"
else
{
dateSearch = "";
}
OleDbCommand dataSelect = new OleDbCommand("SELECT * FROM Scores WHERE 1 = 1 " + firstSearch + lastSearch + companySearch + teamSearch + subteamSearch + dateSearch, conn);
conn.Open();
dgEdit.DataSource = dataSelect.ExecuteReader();
dgEdit.DataBind();
conn.Close();
}
}
public void DG_Edit(object source,
System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
dgEdit.EditItemIndex = e.Item.ItemIndex;
dgEdit.DataBind();
dgEdit.Visible = true;
}
public void DG_Update(object source,
System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
}
public void DG_Cancel(object source,
System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
dgEdit.EditItemIndex = -1;
dgEdit.DataBind();
}
public void DG_Delete(object source,
System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
}
</script>
===================================
DATAGRID:
<asp:DataGrid
ID="dgEdit"
Visible="true"
runat="server"
OnCancelCommand="DG_Cancel"
OnDeleteCommand="DG_Delete"
OnEditCommand="DG_Edit"
OnUpdateCommand="DG_Update"
AutoGenerateColumns="false"
CellSpacing="0"
CellPadding="0"
BorderColor="#F6F5F4"
AlternatingItemStyle-BackColor="#FFFFFF"
HeaderStyle-ForeColor="#FF6600"
HeaderStyle-HorizontalAlign="center"
ItemStyle-HorizontalAlign="center">
<HeaderStyle Font-Bold="true" />
<columns>
<asp:EditCommandColumn
ButtonType="PushButton"
EditText="Edit"
CancelText="Cancel"
UpdateText="Update"
HeaderText="Edit Item" />
<asp:BoundColumn HeaderText="First" HeaderStyle-ForeColor="#FF6600" DataField="firstName" Visible="true" />
<asp:BoundColumn HeaderText="Last" HeaderStyle-ForeColor="#FF6600" DataField="lastName" Visible="true" />
<asp:BoundColumn HeaderText="Company" HeaderStyle-ForeColor="#FF6600" DataField="company" Visible="true" />
<asp:BoundColumn HeaderText="Team" HeaderStyle-ForeColor="#FF6600" DataField="team" Visible="true" />
<asp:BoundColumn HeaderText="Subteam" HeaderStyle-ForeColor="#FF6600" DataField="subteam" Visible="true" />
<asp:BoundColumn HeaderText="A" HeaderStyle-ForeColor="#FF6600" DataField="scoreA" Visible="true" />
<asp:BoundColumn HeaderText="B" HeaderStyle-ForeColor="#FF6600" DataField="scoreB" Visible="true" />
<asp:BoundColumn HeaderText="C" HeaderStyle-ForeColor="#FF6600" DataField="scoreC" Visible="true" />
<asp:BoundColumn HeaderText="D" HeaderStyle-ForeColor="#FF6600" DataField="scoreD" Visible="true" />
<asp:BoundColumn HeaderText="Date" HeaderStyle-ForeColor="#FF6600" DataField="date" DataFormatString="{0:d}" Visible="true" />
<asp:ButtonColumn
HeaderText="Delete Item"
ButtonType="PushButton"
Text="Delete"
CommandName="Delete"/>
</columns>
</asp:DataGrid>
|