Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
86% Quality Score
Upvotes Received
15
Posts with Upvotes
14
Upvoting Members
13
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
4 Commented Posts
11 Endorsements
Ranked #153
Ranked #630
~64.2K People Reached
Favorite Tags
Member Avatar for hirenpatel53

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.

Member Avatar for shahid.tariq
1
3K
Member Avatar for fheppell
Member Avatar for HAOND
0
4K
Member Avatar for gahhon

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?"); });

Member Avatar for sunil_17
0
2K
Member Avatar for newbie26

$("#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.

Member Avatar for BMXDad
0
81
Member Avatar for coder91
Member Avatar for BMXDad
0
641
Member Avatar for djblois

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.

Member Avatar for SteveDotNet
0
623
Member Avatar for opelio4n

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>&nbsp; Home</a> <a class="list-group-item" href="#"><i class="fa fa-book fa-fw"></i>&nbsp; Library</a> <a class="list-group-item" href="#"><i class="fa fa-pencil fa-fw"></i>&nbsp; Applications</a> <a class="list-group-item" href="#"><i class="fa fa-cog fa-fw"></i>&nbsp; Settings</a> </div>

Member Avatar for webhawk
0
138
Member Avatar for lefteris.gkinis
Member Avatar for BMXDad
0
496
Member Avatar for Blueie

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 %>`

Member Avatar for JorgeM
0
175
Member Avatar for Violet_82

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/)

Member Avatar for JorgeM
0
678
Member Avatar for Blueie

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.

Member Avatar for BMXDad
0
195
Member Avatar for Violet_82

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. …

Member Avatar for Violet_82
0
235
Member Avatar for Violet_82
Member Avatar for shehzad.ali.399
Member Avatar for BMXDad
0
87
Member Avatar for sana.f.qureshi_1

Yes, call a stored procedure in the database that will list out the columns you want. Bind the results to the DataGrid.

Member Avatar for BMXDad
0
293
Member Avatar for Gary_4

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.

Member Avatar for BMXDad
0
124
Member Avatar for <M/>

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.

Member Avatar for shashikumar s g
1
698
Member Avatar for adrian.mcguinness
Member Avatar for SID5721
Member Avatar for diafol
0
781
Member Avatar for iConqueror

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.

Member Avatar for BMXDad
0
203
Member Avatar for davecoventry

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; }

Member Avatar for diafol
0
195
Member Avatar for momal
Member Avatar for marvil

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 …

Member Avatar for BMXDad
0
385
Member Avatar for diya45
Member Avatar for 21345570
Member Avatar for GagaCode

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.

Member Avatar for GagaCode
0
294
Member Avatar for YA RAMSAMKER

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?

Member Avatar for BMXDad
0
139
Member Avatar for diya45
Member Avatar for vsmash
0
135
Member Avatar for kavitha N

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>

Member Avatar for kavitha N
0
114
Member Avatar for HunainHafeez