Web ベースの ASP.NET 提案ボックス プログラムでは、管理者は所有者のユーザー名を持つ GridView コントロールに一覧表示されたすべての提案を表示できます。GridView の最後の列に、ステータスが表示されます。管理者がこれらの提案のいずれかのステータスをクリックすると、新しいポップアップ ウィンドウ (asp.net ajax ModalPopUpExtender) が表示され、アクション済み、承認済みなど、考えられるすべてのステータスが一覧表示されます。これらのステータスのいずれかを選択すると、提案のステータスがデータベースで更新されます。すべて正常に動作します。私が今やりたいことは、ユーザーが提案のいずれかのステータスを更新すると、提案のステータスの更新に関する電子メール通知が所有者に送信されることです。
メール関数は既に作成しましたが、メールが送信されない理由がわかりません。コードのデバッグ中に次のエラーが発生します。
割り当てられていないローカル変数 'description' の使用
データベースの [説明] 列の値に既に割り当てていますが、このエラーが発生する理由がわかりません。
誰でもこれで私を助けることができますか?
その更新された提案のユーザー名を取得するのに本当に苦労しています。参考までに、次のデータベース設計があります。
Employee Table: Username, Name...
SafetySuggestionsLog: ID, Title, Description, Username, StatusID
SafetySuggestionsStatus: ID, Status
ASP.NET コード:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="ID"
width="900px" CssClass="mGrid"
DataSourceID="SqlDataSource1"
OnRowDataBound="GridView1_RowDataBound">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" CssClass="alt" />
<HeaderStyle Font-Bold = "True" ForeColor="Black" Height="20px"/>
<Columns>
<asp:BoundField DataField="ID" HeaderText="No." InsertVisible="False"
ReadOnly="True" SortExpression="ID" />
<asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
<asp:BoundField DataField="Description" HeaderText="Description"
SortExpression="Description" />
<asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
<asp:BoundField DataField="Username" HeaderText="Username"
SortExpression="Username" />
<asp:BoundField DataField="DivisionShortcut" HeaderText="Division"
SortExpression="DivisionShortcut" />
<asp:BoundField DataField="Type" HeaderText="Type" SortExpression="Type" />
<%-- This to make status be opened and edited through the Ajax ModalPopUp Window --%>
<asp:TemplateField HeaderText="Status">
<ItemTemplate>
<asp:LinkButton runat="server" ID="lnkSuggestionStatus" Text='<%#Eval("Status")%>'
OnClick="lnkSuggestionStatus_Click">
</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
<%--<asp:HyperLinkField HeaderText="Status"
SortExpression="Status" />--%>
</Columns>
<RowStyle HorizontalAlign="Center" />
</asp:GridView>
<asp:Button runat="server" ID="btnModalPopUp" style="display:none" />
<AjaxToolkit:ModalPopUpExtender ID="modalPopUpExtender1"
runat="server"
TargetControlID="btnModalPopUp"
PopupControlID="pnlPopUp"
BackgroundCssClass="popUpStyle"
PopupDragHandleControlID="panelDragHandle"
OkControlID="OKButton">
</AjaxToolkit:ModalPopUpExtender>
<asp:HiddenField ID="HiddenField1" runat="server"/>
<asp:Panel runat="server" ID="pnlPopUp" CssClass="popUpStyle">
<asp:RadioButtonList ID="StatusList" runat="server" RepeatColumns="1" RepeatDirection="Vertical"
RepeatLayout="Table" TextAlign="Right" DataSourceID="SuggestionStatusDataSource"
DataTextField="Status" DataValueField="ID">
<asp:ListItem id="option1" runat="server" Value="ACTIONED" />
<asp:ListItem id="option2" runat="server" Value="APPROVED" />
<asp:ListItem id="option3" runat="server" Value="PENDING" />
<asp:ListItem id="option4" runat="server" Value="TRANSFERRED" />
</asp:RadioButtonList>
<asp:SqlDataSource ID="SuggestionStatusDataSource" runat="server"
ConnectionString="<%$ ConnectionStrings:testConnectionString %>"
SelectCommand="SELECT * FROM [SafetySuggestionsStatus]"></asp:SqlDataSource>
<asp:Button ID="confirmButton" runat="server" Text="Confirm"
OnClientClick="javascript:return confirm('Are you sure you want to send an email notification about the safety suggestion to the owner?')"
OnClick="btnSendStatus_Click" />
<asp:Button ID="OKButton" runat="server" Text="Close" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
コード ビハインド:
protected void lnkSuggestionStatus_Click(object sender, EventArgs e)
{
LinkButton lnkSuggestionStatus = sender as LinkButton;
//var safetySuggestionsId =
//get reference to the row selected
GridViewRow gvrow = (GridViewRow)lnkSuggestionStatus.NamingContainer;
//set the selected index to the selected row so that the selected row will be highlighted
GridView1.SelectedIndex = gvrow.RowIndex;
//This HiddenField used to store the value of the ID
HiddenField1.Value = GridView1.DataKeys[gvrow.RowIndex].Value.ToString();
//ViewState["Username"] = gvrow.Cells[4].Text;
//show the modalPopUp
modalPopUpExtender1.Show();
}
public void btnSendStatus_Click(object sender, EventArgs e) {
//get the ID of the selected suggestion/row
var statusID = StatusList.SelectedValue;
var safetySuggestionsID = HiddenField1.Value;
string connString = "Data Source=localhost\\sqlexpress;Initial Catalog=psspdbTest;Integrated Security=True";
//For updating the status of the safety suggestion
string updateCommand = "UPDATE SafetySuggestionsLog SET StatusID= @statusID where ID=@SafetySuggestionsID";
using (SqlConnection conn = new SqlConnection(connString))
{
conn.Open();
using (SqlCommand cmd = new SqlCommand(updateCommand, conn))
{
cmd.Parameters.AddWithValue("@statusID", Convert.ToInt32(statusID));
cmd.Parameters.AddWithValue("@SafetySuggestionsID", Convert.ToInt32(HiddenField1.Value));
cmd.ExecuteNonQuery();
}
//reset the value of hiddenfield
HiddenField1.Value = "-1";
}
GridView1.DataBind();
SendSuggestionStatusToUser(safetySuggestionsID);
}
protected void SendStatusByEmail(string toAddresses, string fromAddress, string MailSubject, string MessageBody, bool isBodyHtml)
{
SmtpClient sc = new SmtpClient("MAIL.Aramco.com");
try
{
MailMessage msg = new MailMessage();
msg.From = new MailAddress("pssp@aramco.com", "PMOD Safety Services Portal (PSSP)");
// In case the mail system doesn't like no to recipients. This could be removed
//msg.To.Add("pssp@aramco.com");
msg.Bcc.Add(toAddresses);
msg.Subject = MailSubject;
msg.Body = MessageBody;
msg.IsBodyHtml = isBodyHtml;
sc.Send(msg);
}
catch (Exception ex)
{
throw ex;
}
}
protected void SendSuggestionStatusToUser(string suggestionID)
{
string connString = "Data Source=localhost\\sqlexpress;Initial Catalog=psspdbTest;Integrated Security=True";
string safetySuggestionID = suggestionID.ToString();
//string username = ViewState["Username"].ToString();
//The following connection is to get the username of the suggestion Owner
//and append (@aramco.com) to it.
using (SqlConnection conn = new SqlConnection(connString))
{
var sbEmailAddresses = new System.Text.StringBuilder(2000);
//initiate the varibles that will be retreived from the database
string username;
string description;
string status;
// Open DB connection.
conn.Open();
string cmdText2 = @"SELECT Username, Description, Status FROM dbo.SafetySuggestionsLog SSL INNER JOIN SafetySuggestionsStatus SSS
ON (SSL.StatusID = SSS.ID) WHERE (SSL.ID = @safetySuggestionID)";
using (SqlCommand cmd = new SqlCommand(cmdText2, conn))
{
cmd.Parameters.AddWithValue("@SafetySuggestionID", Convert.ToInt32(HiddenField1.Value));
SqlDataReader reader = cmd.ExecuteReader();
if (reader != null)
{
if (reader.Read())
{
username = reader["Username"].ToString();
description = reader["Description"].ToString();
status = reader["Status"].ToString();
sbEmailAddresses.Append(username).Append("aramco.com");
}
}
var sEMailAddresses = sbEmailAddresses.ToString();
string body = @"Good day, <br /><br />
<b> We just would like to notify you that your following safety suggestion: </b>"
+ description +
@"<br /><br />
has been.
<br /> <br /><br /> <br />
This email was generated using the <a href='http://pmv/pssp/Default.aspx'>PMOD Safety Services Portal (PSSP) </a>.
Please do not reply to this email.
";
SendStatusByEmail(sbEmailAddresses.ToString(), "", "Notification of Your Safety Suggestion", body, true);
sbEmailAddresses.Clear();
reader.Close();
}
conn.Close();
}
}
注: ここに長いコードを投稿するべきではないことはわかっていますが、私の仕事を説明し、助けを求めたいからです。
アップデート:
変数を NULL に割り当てることに関してコードを変更しました。コードをデバッグすると、リーダーが機能せず、次のように読み取れないことがわかりました。
if (reader != null)
{
if (reader.Read())
{
username = reader["Username"].ToString();
description = reader["Description"].ToString();
status = reader["Status"].ToString();
sbEmailAddresses.Append(username).Append("@aramco.com");
}
}
更新 2:
このSendSuggestionStatusToUser(string suggestionID)
メソッドでは、次の行にブレーク ポイントを追加しました。
string safetySuggestionID = suggestionID.ToString();
次の行にブレークポイントを追加しました。
cmd.Parameters.AddWithValue("@safetySuggestionID", Convert.ToInt32(HiddenField1.Value));
そして、最初のものでは、safetySuggestionID が渡された値からデータを取得したことがわかりました。ただし、2 番目の値(HiddenField1.Value)
は -1 で、その理由はわかりません。また、次の各行にブレーク ポイントを追加しました。
SqlDataReader reader = cmd.ExecuteReader();
if (reader != null)
{
if (reader.Read())
{
username = reader["Username"].ToString();
description = reader["Description"].ToString();
status = reader["Status"].ToString();
sbEmailAddresses.Append(username).Append("@aramco.com");
}
}
また、デバッガーはデバッグ中にそれらを通過しませんでした。それは直接行きます
var sEMailAddresses = sbEmailAddresses.ToString();
理由はわかりません。何か案が?手伝っていただけませんか?