Base solution for your next web application

Activities of "elmogallen"

Question

I've noticed that if I leave an asp.net zero page open for awhile, then come back to it, the page won't work. Anything that tries to access data fails. I get errors like "Input null" and so on. Refreshing the page makes everything work again.

How can I either:

  1. Prevent this from happening? (What exactly is timing out?)
  2. Automatically log the user out after x minutes of inactivity.

Thank you, Dave

Question

In this framework, how do you do a simple radio button list?

Example: <a class="postlink" href="http://www.cssscript.com/wp-content/uploads/2014/07/Google-Material-Design-Animated-Radio-Buttons-with-Pure-CSS3.jpg">http://www.cssscript.com/wp-content/upl ... e-CSS3.jpg</a>

How would I accomplish that using ASP.NET Zero? I'm having a hard time. A normal radio button won't show up for me, and I'm struggling a bit. I'm not sure how to make it work in angular/bootstrap/metronic.

Could you give me an example?

Thanks, Dave

Question

I'm having a hard time understanding how to use Bootstrap Select in my SPA ASP.NET Zero application. Can you give an example?

This is not working:

<select name="repeatSelect" id="repeatSelect" ng-model="vm.coupon.promotionId" class="selectpicker">
    <option ng-repeat="option in vm.promotions" value="{{option.id}}">{{option.name}}</option>
</select>

Do I need to do anything else?

Thanks, Dave

Question

How do I map the ABP users/roles to users/roles from Active Directory? I don't understand how it works. Can someone explain?

I found some documentation for ASP.NET Boilerplate, but it looks like that might already be done in ASP.NET Zero. I also looked at the docs for ASP.NET Zero, but it was fairly short, and didn't tell me how to do things like add users once I switched to LDAP...

Thanks in advance, Dave Haynes

We just purchased ASP.NET Zero to rewrite an internal application. Your documentation is great, and we've been able to add some simple pages in no time at all!

However, all our data already exists in SQL Server, and is touched by multiple teams, so we can't really use Code First, and I have not seen any documentation on what the best practices are for accessing that in the ASP.NET Zero world. Can you help?

Thanks, Dave

Showing 1 to 5 of 5 entries