Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of two websites #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,16 @@ private void button58_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://whatcms.org/?s=" + HttpUtility.UrlEncode(textBox1.Text));
}

private void button59_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://exchange.xforce.ibmcloud.com/url/" + HttpUtility.UrlEncode(textBox1.Text));
}

private void button60_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://securitytrails.com/domain/" + HttpUtility.UrlEncode(textBox1.Text) + "/dns/");
}

private void label1_Click(object sender, EventArgs e)
{
Expand Down