On 12th November, 2009 I have published the Contact / Feedback webpart solution on to Codeplex
You can download the Contact / Feedback webpart from http://contact.codeplex.com/
Comments on this solution are very much appreciated 🙂
Thanks for looking into this
Hi,
Good post but you should add reset or refresh functionality in this web part because after sending the feedback the values remains in the textboxes in the web part.
Tell me that functionality please.
Thanks
Rahul, Thanks for looking into the post, you can set fields to reset to blank
Button oButtonReset = new Button();
oButtonReset.Text = “Reset”;
oButtonReset.CssClass = “ButtonHeightWidth”;
oButtonReset.Click += new EventHandler(oButtonReset_Click);
void oButtonReset_Click(object sender, EventArgs e)
{
oTextName.Text = “”;
oTextEMail.Text = “”;
oTextSubject.Text = “”;
oTextMessage.Text = “”;
oLabelValidMessage.Text = “”;
}
At last render the reset button in Render() method
oButtonReset.RenderControl(writer);
Have you guys done something / have any ideas about how could we change this webpart language?
Hi
I have installed the wsp file and did the configuration . But when I tried to install the web part am getting the bellow error
One or more field types are not installed properly. Go to the list settings page to delete these fields.0x81020014
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Runtime.InteropServices.COMException: One or more field types are not installed properly. Go to the list settings page to delete these fields.0x81020014
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Could you please advise how to resolve this?