Click here to Skip to main content
15,881,281 members
Articles / Web Development / HTML
Tip/Trick

How to Submit Google Docs Form by using C#

Rate me:
Please Sign up or sign in to vote.
4.56/5 (5 votes)
21 Sep 2012CPOL 57.2K   4   9
Submitting (HTML) specifically Google Docs Form in C#

Step 1

(UPDATED!) SEP 2012

First create your form in Google doc.

Step 2

Open the form and check the source to find this line, and copy the Action parameter value:

HTML
<form action=https://docs.google.com/formResponse?formkey=XXXXXXX&amp;ifq 
method="POST" id="ss-form"> 

Step 3

Use this method to submit a new entry in your C# code (this example is for a form with two textboxes):

C#
void SubmitGoogleDoc(){
            //Use WebClient Class to submit a new entry
            WebClient wc = new WebClient();
            var keyval = new NameValueCollection();
            keyval.Add("entry.0.single", "XXXX");
            keyval.Add("entry.1.single", "XXXX");
            
            keyval.Add("submit", "Submit");
            
            //Create an event for Submit Complete
            wc.UploadValuesCompleted += 
            new UploadValuesCompletedEventHandler(wc_UploadValuesCompleted);
            //Create Additional Headers  
            
            wc.Headers.Add("Origin", "https://docs.google.com");
            wc.Headers.Add("User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) 
            AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10");
            
            //Finally Submit the Form:
            wc.UploadValuesAsync(new Uri
            ("https://docs.google.com/formResponse?formkey=XXXXX&ifq"), 
            "POST", keyval, Guid.NewGuid().ToString());
            
        } 
C#
void wc_UploadValuesCompleted(object sender, UploadValuesCompletedEventArgs e)
{
    //Submit Complete
}

Thanks.

Hope this small tip will make you happy. Smile | <img src=

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Iran (Islamic Republic of) Iran (Islamic Republic of)
Ghasem - Nobari
Qasem*AT*SQNco.com

Comments and Discussions

 
QuestionDidn't work, but have other solution Pin
Member 1172917229-May-15 9:33
Member 1172917229-May-15 9:33 
Questionhei :) Pin
Gun Gun Febrianza16-Oct-12 17:00
Gun Gun Febrianza16-Oct-12 17:00 
GeneralMy vote of 5 Pin
Gun Gun Febrianza16-Oct-12 17:00
Gun Gun Febrianza16-Oct-12 17:00 
GeneralMy vote of 1 Pin
Jackie0010027-May-12 16:05
Jackie0010027-May-12 16:05 
GeneralRe: My vote of 1 Pin
Ghasem Nobari21-Sep-12 18:51
Ghasem Nobari21-Sep-12 18:51 
GeneralJust tried this and it is not working... It returns success... Pin
Adam Haile9-Dec-11 18:14
Adam Haile9-Dec-11 18:14 
GeneralRe: Just tried this and it is not working... It returns success... Pin
Ghasem Nobari21-Sep-12 18:49
Ghasem Nobari21-Sep-12 18:49 
GeneralReason for my vote of 5 good one Pin
Pranay Rana7-Jan-11 0:00
professionalPranay Rana7-Jan-11 0:00 
GeneralHtml Forms Pin
Ghasem Nobari6-Jan-11 23:41
Ghasem Nobari6-Jan-11 23:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.