URL 中的 ASP.NET Web 窗体参数

ASP.NET Web Form parameters in URL(URL 中的 ASP.NET Web 窗体参数)
本文介绍了URL 中的 ASP.NET Web 窗体参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 ASP.NET 页面,其中包含一个搜索页面的表单.

I have an ASP.NET page that contain a form that search the page.

是否有任何解决方案可以让我在 URL 中包含搜索文本?

Is there any solution so that I can have the search text in the URL?

我想让我的客户可以复制/粘贴搜索结果 URL.

I want to give the posibility to my clients to copy/paste the search results URL.

推荐答案

经过对这个主题的更多研究后,我认为 javascript 解决方案是最好的:

After more research abut this topic I think that the javascript solution is the best:

您可以使用 JavaScript 访问表单的 ACTION 属性.

You can access the ACTION attribute of the form using JavaScript.

<form id="myForm" action="Search.aspx" onsubmit="return setAction();">
    <input id="textbox" />
    <input type="submit" value="Submit" />
</form>

<script type="text/javascript">

function setAction()
{
    var myForm = document.getElementById( "myForm" );
    var myText = document.getElementById( "textbox" );

    if (myForm && myForm.action && myText && myText.value != null )
    {
       myForm.action = "Search.aspx?q=" + myText.value;
    }
    return true;
}

</script>

就我个人而言,我不是 JavaScript 的忠实粉丝……但这不会向服务器添加额外的请求.如果您认为这有任何缺点,请告诉我.

Personally I am not a big fan of JavaScript ... but this does not add an extra request to the server. If you think that this has any drawbacks please let me know.

这篇关于URL 中的 ASP.NET Web 窗体参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
how do i pass parameters to aspnet reportviewer(如何将参数传递给aspnet report查看器)
Bind multiple parameters from route and body to a model in ASP.NET Core(在ASP.NET Core中将路由和主体中的多个参数绑定到一个模型)
Custom model binding in AspNet Core WebApi?(AspNet Core WebApi中的自定义模型绑定?)
How to minify in .net core mvc view?(如何在.Net核心MVC视图中缩小?)