首页 \ 问答 \ Apple B2B App Store - 几乎没有疑问(Apple B2B App Store - Few Doubts)

Apple B2B App Store - 几乎没有疑问(Apple B2B App Store - Few Doubts)

我已经在Apple,Google,以及世界各地阅读过关于Apple B2B的内容,但是我无法得到答案的问题很少。 他们来了:

  1. B2B应用程序是否必须具有注册功能? 我们的应用程序具有针对特定业务的登录功能,但没有注册功能。
  2. 我们希望应用程序可以通过一两个特定的业务下载,这是否可以通过B2B App Store实现?

我们的应用程序没有注册,但用户必须使用其业务提供给他们的特定凭据登录。 那么我们可以在B2B应用商店上部署这样的应用吗?


I have read about Apple B2B on Apple, Google, here and everywhere, but there are few questions I cannot get answers to. Here they are:

  1. Is it mandatory that a B2B app should have a sign-up functionality? Our application have login functionality for a a specific business but no sign-up functionality.
  2. We want the app to be downloadable by a one or two specific business, is this be achievable via B2B App Store?

Our application do not have sign-up and but users have to login in using the specific credentials provided to them by their business. So can we deploy such app on B2B apps Store?


原文:https://stackoverflow.com/questions/33800138
更新时间:2024-03-07 21:03

最满意答案

如果使用string.Empty您将在生成的html中获得一个空属性

@Html.TextBoxFor(x => x.Email, new { type = "email", @class = "form-control",
placeholder = "Email address", required = string.Empty, autofocus = string.Empty })

If you use string.Empty you will get an empty attribute in the generated html

@Html.TextBoxFor(x => x.Email, new { type = "email", @class = "form-control",
placeholder = "Email address", required = string.Empty, autofocus = string.Empty })

相关问答

更多