- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 15
- Posts with Upvotes
- 14
- Upvoting Members
- 13
- Downvotes Received
- 3
- Posts with Downvotes
- 1
- Downvoting Members
- 3
Re: Another new one to look at is sBlog. Fairly simple, but looks to have a lot of promise [sBlog.Net Project](http://sblogproject.net/) FYI ... WordPress is PHP, not Asp.Net. | |
Re: It needs to be a seperate list. You could also set a style: style="float:right;" | |
Re: Your code is going to fire as soon as the page is finished loading. Try this, it works differently on IE and Firefox though: $(window).bind('beforeunload', function() { alert("You are attempting to leave this page. Are you sure want to leave MSJ Bank Financial?"); }); | |
Re: $("#DatePick").datepicker({ minDate: <%= DateTime.Now.ToShortDateString() %> }); This will set min date to the current date. Only future dates are available to select. Set the 'minDate' argument to the date you need. | |
Re: Use jQuery $("ul.nav > li a[href*='pageName']").parent("ul.nav > li").addClass("active"); | |
Re: If your record count is fairly small you can use the .RecordCount attribute on the record set. Otherwise a seperate SQL statment returning an int of records counted. | |
Re: Add font-awesome or one of the other icon stacks. `<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> ` Example from Font-Awesome ( [Font-Awesome](http://fortawesome.github.io/Font-Awesome/examples/) ): <div class="list-group"> <a class="list-group-item" href="#"><i class="fa fa-home fa-fw"></i> Home</a> <a class="list-group-item" href="#"><i class="fa fa-book fa-fw"></i> Library</a> <a class="list-group-item" href="#"><i class="fa fa-pencil fa-fw"></i> Applications</a> <a class="list-group-item" href="#"><i class="fa fa-cog fa-fw"></i> Settings</a> </div> | |
Re: Check your CSS classes, to make sure they are not floating it over or repostioning it somehow. | |
Re: Are you looking for a certain format? This is what I do to keep the copyright set to the current year ... `<%= DateTime.Now.Year %>` If you need the whole date ... `<%= DateTime.Now.ToShortDateString %>` | |
Re: Your site host needs to be able to support IIS. Not all hosting sites do. If they don't your either going to have to find a new host, serve it yourself or use a different language. [Azure is easy to use and free for a simple site.](http://azure.microsoft.com/en-us/documentation/articles/fundamentals-introduction-to-azure/) | |
Re: Go into designer view, refresh and save the page, then go back into code view. Sometimes the IDE is slow in writing to the .designer file. | |
Re: Couple things that may make life easier ... * Use ValidationGroup names. Then you can validate groups or individual inputs * Don't use inline SQL. Write a view or procedure to do the work, then call the procedure. Big security no no. Inline SQL opens you up to SQL injection. … | |
Re: ... you can usually refresh by hitting F5. | |
Re: Yes, call a stored procedure in the database that will list out the columns you want. Bind the results to the DataGrid. | |
Re: Make sure the path to your external files are correct. You can go to 'View Source' in the browser and click on an external file location. If it doesn't work, then you'll need to find out why. Code example would help. | |
Re: Try removing the "http" on your links. I.E. href="\\somewebsite.com\css\site.css" This is a hack that works if one of the sites is using https or http. | |
| Re: Looks like your trying to convert "monster.co.uk" to an int |
Re: About W3Schools ... I would not use. Just saying ... http://www.w3fools.com/ | |
Re: Try to think of an interface as a class of classes. Each seperate class could be of a different type. It allows you to create very complex models. | |
Re: diafol ... nicely done. I'd make a small change though (visual stuff): body{ font-size: 60px; } .ring{ color:white; text-align: center; background-color:#CC0000; padding: 5px; } | |
| |
Re: Doesn't look like your calling LoadGrid() till after a dropdown selection. On page load you can do this, but you'll need to have some default start values. Also, firstDate and secondDate values are not set till a dropdown selection. You might want to refactor and call LoadGrid() by passing the … | |
Re: Where is hrdoc1 called? Where is id set? | |
| |
Re: On the grids row databound event you can access and run your method that would fill the dropdown. You can even set selected item after its loaded, by using a hidden value in the gridview data. | |
Re: Accessibility ... Can it be read and navigated by anyone? User Experiance ... Can I find what I want fast. Can I view it on my ... (Phone, tablet, laptop, desktop). Is the content relevent to what the site is about? | |
Re: You need to check c1.SignUp, to see if the return value is true or false. | |
Re: Grab an id from a grid row and then use that to get the detail information. Works best if you can put the id into a link button CommandArgument. Example below: <asp:templatefield> <itemtemplate> <asp:LinkButton ID="imgbtnGetDetails" commandargument='<%# Eval("sID") %>' commandname="DetailRow" cssclass="imgIcon" runat="server" > Details </asp:LinkButton> </itemtemplate> </asp:templatefield> | |
Re: What is your procedure "GetMonthlyReport" bringing back? |