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 #154
Ranked #630
~65.7K People Reached
Favorite Tags

135 Posted Topics

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
83
Member Avatar for coder91
Member Avatar for BMXDad
0
642
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
646
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
141
Member Avatar for lefteris.gkinis
Member Avatar for BMXDad
0
499
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
180
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
682
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
197
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
237
Member Avatar for Violet_82
Member Avatar for shehzad.ali.399
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
303
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
130
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
710
Member Avatar for adrian.mcguinness
Member Avatar for SID5721

About W3Schools ... I would not use. Just saying ... http://www.w3fools.com/

Member Avatar for diafol
0
787
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
206
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
197
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
393
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
299
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
155
Member Avatar for diya45
Member Avatar for vsmash
0
157
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
127
Member Avatar for HunainHafeez
Member Avatar for kavitha N
Member Avatar for mitesh.24jain
Member Avatar for dstoltz

Nothing wrong with classic ASP. I have many sites that I maintain that are still running ASP. And they work just as good as anything new. The only issue I have is the time needed for some of the reporting sites, but this only on the larger ones.

Member Avatar for JorgeM
0
254
Member Avatar for riya#21
Member Avatar for BMXDad
0
152
Member Avatar for gahhon

You might want to rethink your database design. A catagory list should be a table lookup, which in turn is referenced in a data table. You have a database diagram you could show?

Member Avatar for gahhon
0
185
Member Avatar for giangnt
Member Avatar for Yousha
Member Avatar for diya45
Member Avatar for grafic.web
Member Avatar for dlmagers

Change `<asp:Checkbox ID = "chklst" runat="server" />` to `<asp:CheckBoxList ID="chklst" runat="server" AutoPostBack = "true"></asp:CheckBoxList>` To add to it, do this in your .cs file `chklst.Items.Add('Happy Birthday');` `chklst.Items.Add('Happy Happy Birthday');`

Member Avatar for dlmagers
0
131
Member Avatar for maxpaine69

Try this: private void RadGrid_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e) { if (e.Item is GridDataItem) { GridDataItem dataItem = e.Item as GridDataItem; string contactName = dataItem["SomeField"].Text; LinkButton button = dataItem["ColumnName"].Controls[0] as LinkButton; button.Attributes["onclick"] = "return confirm('Are you Sure You Want to Delete User??')"; } }

Member Avatar for BMXDad
0
186
Member Avatar for rdeveloper1

Create a User class, and add it to a Session. Session["User"] = Users.GetUser(1); Then you can grab the Session["User"] to fill any info you need. Users usr = (Users)Session["User"]; string pass = usr.Password; string usrName = usr.UserName;

Member Avatar for geniusvishal
0
131
Member Avatar for techyworld

Example page? Rest of code? With the information given, its acting like the container its in has a set or max width.

Member Avatar for BMXDad
0
147
Member Avatar for Violet_82

<!DOCTYPE html> <html> <head> <title>Floating problem</title> <style type="text/css"> .mainWrapper{ background-color:red; max-width:630px; min-height:400px; padding:0; } .one{ width:310px; height:120px; background-color:magenta; float:left; margin-bottom:10px; } .two{ width:310px; height:120px; background-color:magenta; float:left; } .three, .four{ width:310px; height:150px; background-color:yellow; float:left; } .three{ margin-right:10px; } /* .subThree1{ width:150px; height:150px; background-color:black; } */ .one{ margin-right:10px; } </style> </head> <body> …

Member Avatar for BMXDad
0
154
Member Avatar for cirbab4

Have you tried the jQuery Toggle $('#< %= btnName.ClientID %>').click(function() { $('#DivId').slideToggle('slow'); });

Member Avatar for arun1123
0
3K
Member Avatar for dwlamb

Nothing wrong with using tables in a responsive site. Just make sure that word wrap is on. Some data by its nature is not able to be completly responsive though, and thats ok ... Another option would be to put it in a horizontal form with labels. These would stack …

Member Avatar for TomH.PG
0
289
Member Avatar for earlcools

Use a Session[] ... Session["Name"] = null; Session["Name"] = txtBox.Text.Trim(); then in the page that your printing with, use it like so ... string sName = Session"Name"] != Null ? Session["Name"].ToString() : string.Empty; lblName.Text = sName;

Member Avatar for BMXDad
0
114
Member Avatar for Diogo Martinho

Yes, so long as the UserId and Email used are unique, otherwise you could login as someone else.

Member Avatar for BMXDad
0
63
Member Avatar for davy_yg

Your styling the menu using the Left property, which is not working. also, the style.css is being called twice. Try this tutorial on making a horizontal css menu ... its a classic thats been around for a long time. [listutorial](http://css.maxdesign.com.au/listutorial/horizontal01.htm) and

Member Avatar for davy_yg
0
115
Member Avatar for faranak

The End.