搜索 - 打开新页面并为搜索到的内容提供gridview或html

时间:2017-04-25 09:34:35

标签: c# mysql asp.net search gridview

因为我试图在我的网站上创建一个我需要为我的决赛创建的搜索选项。

目前它还没有工作,但我创建了一些代码。我还制作了一个特定的search.aspx页面,但我不知道如何使用它。我希望有人可以帮助我。

我正在努力做的是:如果人们搜索已知标签,我想向他们提供我在该标签上的所有信息。所有这些信息都在我的数据库中,我应该可以访问它。

我的ASPX

module.exports = function (config) {
  config.set({
    basePath: '',
    frameworks: ['jasmine', '@angular/cli'],
    plugins: [
      require('karma-jasmine'),
      require('karma-chrome-launcher'),
      require('karma-firefox-launcher'),
      require('karma-jasmine-html-reporter'),
      require('karma-coverage-istanbul-reporter'),
      require('karma-spec-reporter'),
      require('@angular/cli/plugins/karma')
    ],
    client:{
      clearContext: false // leave Jasmine Spec Runner output visible in browser
    },
    files: [
      { pattern: './src/test.ts', watched: false }
    ],
    preprocessors: {
      './src/test.ts': ['@angular/cli']
    },
    mime: {
      'text/x-typescript': ['ts', 'tsx']
    },
    coverageIstanbulReporter: {
      reports: ['html', 'text-summary', 'json-summary'],
      fixWebpackSourcePaths: true,
      thresholds: {
        global: { // thresholds for all files
          statements: 60,
          lines: 60,
          branches: 60,
          functions: 60
        },
        each: { // thresholds per file
          statements: 60,
          lines: 60,
          branches: 60,
          functions: 60
        }
      }
    },
    angularCli: {
      environment: 'dev'
    },
    reporters: config.angularCli && config.angularCli.codeCoverage
      ? ['progress', 'spec', 'coverage-istanbul']
      : ['progress', 'spec', 'kjhtml'],
    port: 9876,
    colors: true,
    logLevel: config.LOG_INFO,
    autoWatch: true,
    browsers: ['Chrome', 'Firefox'],
    singleRun: false
  });
};

这是我的ASPX.CS

<a class="nav-link text-uppercase text-expanded text-white">
                            <asp:TextBox ID="SearchByTagTB" runat="server"></asp:TextBox>
                            &nbsp;<asp:Button ID="SearchByTagButton" runat="server" Text="Zoek" CssClass="button" Onclick="SearchByTagButton_Click" />

                        </a>

0 个答案:

没有答案