在ASP MVC中显示JQuery Toast的警报

时间:2017-11-06 12:49:05

标签: jquery asp.net-mvc toast

使用ASP MVC和JQuery,如果电子邮件或密码错误,我试图显示Toast错误警报。

问题在于我使用Tempdata来显示消息,并且我没有成功将toast jquery包含在Tempdata中。

PS:toast的警报在其他视图中完美运行,我不使用tempdata来显示消息。

所以这就是我尝试过的:

控制器:

TextView

查看:

RemoteViews notificationView = new RemoteViews(context.getPackageName(), R.layout.news_article_notification_panel);    

     <LinearLayout
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:orientation="horizontal">

         <com.android.CustomTextView
            android:id="@+id/textView_appname"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:layout_marginStart="8dp"
            android:text="Univadis"
            android:textColor="@color/accent"
            android:textSize="12sp"/>

</LinearLayout>

0 个答案:

没有答案