2010-11-30 161 views
0

我需要我的網站上的一個小按鈕,以便人們可以訂閱我的通訊。Yeshello註冊表格

這裏是我有:

<form name="yeshello" method="post" target="_blank" action="https://forms.yeshello.net/sub.htm?mycode"> <input type="text" name="email"> <input type="submit" value="Subscribe"</form> 

現在的responseType必須是0 和successUrl必須http://www.myspecificthankyoupage.html

如何獲得在代碼中的responseType和succesUrl? 從我所瞭解的情況來看,這兩者都可以被視爲網頁表單中的隱藏字段。

任何幫助,將不勝感激。

回答

0

好吧,我發現了。它沒有工作的原因,因爲我給了錯誤的網址。

下面是正確的代碼:

<form name="yeshello" method="post" target="_blank" action="https://www.yeshello.net/myuniquecode"> 
     <input type="text" name="email" /> 
     <input type="submit" value="Subscribe" /> 
     <input type="hidden" name="responseType" value="0" /> 
     <input type="hidden" name="successUrl" value="http://myrequestedwebsiteurl" /> 
    </form>