From 20a9dddb854b9b1da0a83d6e13331925ad4585e3 Mon Sep 17 00:00:00 2001 From: root <295172551@qq.com> Date: Thu, 26 Jun 2025 01:03:46 +0800 Subject: [PATCH] 1111 --- LTEMvcApp/Controllers/HomeController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LTEMvcApp/Controllers/HomeController.cs b/LTEMvcApp/Controllers/HomeController.cs index 29a2427..a59668c 100644 --- a/LTEMvcApp/Controllers/HomeController.cs +++ b/LTEMvcApp/Controllers/HomeController.cs @@ -155,9 +155,9 @@ public class HomeController : Controller /// /// 客户端消息队列页面 /// - public IActionResult ClientMessages(string clientName = "TestClient") + public IActionResult ClientMessages(string address = null) { - ViewBag.ClientName = clientName; + ViewBag.Address = address; return View(); }