アプリケーションを作成し、Twitter アカウントにツイートを投稿するボタンを作成したいと考えています。このコードはネットで見つけました。コードは素晴らしいですが、1 つ問題があります。ボタンをクリックするとポップアップウィンドウが開きますが、テキストボックスの上のテキストは「何が起こっていますか?」です。
私の質問ですが、このテキストを変更するにはどうすればよいですか?
以下のコードを参照してください。
ありがとう
RJUY
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="FacebookUserImport.Twitter.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<!-- other smart stuff here... -->
<script type="text/javascript">
function popup_share(url, width, height) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=0,width=" + width + ", height=" + height + ", left = 363, top = 144');");
}
</script>
</head>
<body>
<!-- other smart stuff here... -->
<% var link = "Practice: some text here http://www.florian-hacquebart.eu/?p=113',800,320"; %>
<a href="javascript:popup_share('http://twitter.com/home?status=<%= link %>)" title="Share on Twitter">
<img src="twitter_button.png" alt="share this article on twitter" />
</a>
</body>