我有一个使用ISPConfig 3的VPS。我只是创建一个网站和ftp访问。如何在没有域名的情况下测试我的网站?
答案 0 :(得分:1)
您可以修改本地<Window
x:Class="VmBindingExample.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VmBindingExample"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow"
Width="525"
Height="350"
mc:Ignorable="d">
<Window.DataContext>
<local:MainWindowVm />
</Window.DataContext>
<StackPanel Margin="20" Orientation="Vertical">
<TextBox
Margin="4"
MaxLength="10"
Text="{Binding Path=Text, UpdateSourceTrigger=PropertyChanged}" />
<TextBox Margin="4" Background="{Binding BackgroundColor}">The color of this will reflect the length of the first textbox.</TextBox>
</StackPanel>
</Window>
以匹配您的VPS IP&amp;域。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AgentOctal.WpfLib;
namespace VmBindingExample
{
using System.Windows.Media;
public class MainWindowVm : ViewModel
{
private string _text;
public string Text
{
get
{
return _text;
}
set
{
SetValue(ref _text, value);
byte red = (byte)(255 / 10 * (10 - _text.Length));
BackgroundColor = new SolidColorBrush(Color.FromArgb(255, red, 255, 255));
}
}
private Brush _backgroundColor;
public Brush BackgroundColor
{
get
{
return _backgroundColor;
}
set
{
SetValue(ref _backgroundColor, value);
}
}
}
}
其中x.x.x.x应替换为您的VPS IP地址。
保存文件并点击地址栏中的domain.tld。