小编Ash*_*her的帖子

将参数默认值设置为日期/时间

我有一个在 Visual Studio 2017 中构建的 SSRS 报告。有一个开始和结束日期。开始是从今天的日期早上 6 点开始 -1 周,结束日期是今天的日期早上 5:59。

我通常会在 SQL 中设置这些值,但有人要求能够使用参数下拉列表来选择日期范围。

我在VS里打开参数,去默认值然后不知道Visual Basic不知道下一步。

sql-server reporting-services ssrs-2012

1
推荐指数
1
解决办法
2万
查看次数

Azure Monitor doesn't list all my subscriptions when adding new resource alert

I am in Azure Monitor, I select the subscription filter to view my existing alerts. I then click add new alert, select the scope / resources I want to create the rule for, but I am not seeing all my subscriptions in the drop down.

我是否缺少权限?我已经拥有缺少的订阅的“贡献者”角色。

Azure 监视器屏幕截图

azure azure-monitoring azure-monitor

1
推荐指数
1
解决办法
697
查看次数

消除Div元素之间的差距

我在两个div元素之间出现了一个空白区域 col3-2,the_content而我无法解决这个问题.

在此输入图像描述

访问此处的网站 您可以看到图像和绿色元素之间的白色间隙.

HTML - PHP:

    <div id="imageslider" class="clearfix">
        <?php echo do_shortcode('[advps-slideshow optset="1"]'); ?>
    </div>
        <div class="col3-2">
            <div id="content" class="clearfix">
                <?php 
                    $args = array( 'pagename' => 'home' );
                    $the_query = new WP_Query( $args );
    while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
                        <div class="the_content">
                        <?php the_content(); ?>
<?php edit_post_link(__('Click to edit this content','themify'), '[', ']'); ?>
                    </div>
                <?php endwhile; wp_reset_query();?>
            </div>
        </div>
Run Code Online (Sandbox Code Playgroud)

CSS:

.col3-2
{
    float: left;
    margin-left: 0%;
}
.col3-2 {
    width: 100%;
    font-family: 'Titillium Web', …
Run Code Online (Sandbox Code Playgroud)

html css wordpress

0
推荐指数
1
解决办法
90
查看次数