Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は Java EE によって開発されたシステムにいます。リンクは jsp ページ内にあります。この jsp ページのように、<a href="http://www.differnet.com/a.aspx" target="_blank">Visit W3Schools</a>ユーザー名とパスワードを入力せずに別のドメインでこの aspx ページにログインする必要があります。target 属性には何を入れる必要がありますか?
<a href="http://www.differnet.com/a.aspx" target="_blank">Visit W3Schools</a>
別のドメインで、ユーザー名とパスワードをクエリ文字列として渡し、これを aspx ページで取得します。aspx ページの page_load で、データベースのユーザー名とパスワードを確認し、それに応じてユーザーを許可します。