Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #2K
~6K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

18 Posted Topics

Member Avatar for john_hasan

To print prime numbers from 1 to 500 using for loop following program is use. [code=c] #include<stdio.h> void main() { int c=0; for(int i=0;i<=500;i++). { for(int j=2;j<i;j++) { if(i%j==0) c=c+1; } if(c==0) { printf(i,"\n"); } c=0; } } [/code]

Member Avatar for aizam76
-1
3K
Member Avatar for seoservices7890

[QUOTE=seoservices7890;1546884]Social bookmarking is a great seo strategy.There are a lots of benefits of social bookmarking.It helps in fast crawling of web site.Social bookmarking is the best way to drive traffic to our site as it creates inbound links to our content which helps to gain the attention of search engine …

Member Avatar for liveindiantv
0
344
Member Avatar for new_developer

Read some Flash tutorial for banner designing [url]http://www.tizag.com/flashTutorial/flashbanner.php[/url]. Asp.net provide inbuilt control for flash application using on website follow [url]http://www.aspnetflashvideo.com/[/url].

Member Avatar for trancewebdesign
0
246
Member Avatar for FBG
Member Avatar for newbi11
Member Avatar for Joenade
0
121
Member Avatar for fawadkhalil

Just ,Put your Grid View outside update panel.Update panel control doesn't refresh when page refresh.

Member Avatar for ciint
0
174
Member Avatar for Draucia

You just Set Image Property Repeat-X,Repeat-Y in CSS for proper display image in Div.

Member Avatar for shaya4207
0
153
Member Avatar for powersstuff

This website may help you to play flash and WMV file in your website.Follow The steps according to your need. [url]http://www.beansoftware.com/ASP.NET-Tutorials/Media-Player.aspx[/url]

Member Avatar for powersstuff
0
223
Member Avatar for Wehttam

This code may help you check your Gridview binding. [code] DataTable dt = new DataTable(); dt.Columns.Add(new DataColumn("Item #", typeof(int))); dt.Columns.Add(new DataColumn("Contract Number", typeof(string))); dt.Columns.Add(new DataColumn("Customer Name", typeof(string))); int i; for (i = 0; i < 40; i++) { DataRow dr = dt.NewRow(); dr["Item #"] = i; dr["Customer Name"] = this.txtCustomerName.Text; …

Member Avatar for Wehttam
0
193
Member Avatar for lapunluyang

we can not judge it ,because both are essential seo activites . both togatherly help you to get more baclinks on your site.

Member Avatar for shaniadavid
0
155
Member Avatar for ciint
Member Avatar for erum
Member Avatar for ciint
0
333
Member Avatar for coltonnel

Web design is the skill of creating presentations of content that is delivered to an end-user through the World Wide Web, by way of a Web browser or other Web-enabled software. Graphic design include drawn, painted, photographed, or computer-generated images,Also design the letter forms that make up various typefaces found …

Member Avatar for freddavis
0
230
Member Avatar for babaidebnath

You can make it,you may require any assistance go through this website. [url]http://www.freejavaguide.com/corejava.htm[/url]

Member Avatar for ciint
0
80
Member Avatar for prasanthsagar
Re: LINQ

To store the data in linq using this syntex [code=asp]var database = from colomn in tables where condition select condition;[/code] then Bind the data using Linq Data Source. [code=asp] protected void Page_Load(object sender, EventArgs e) { GridView1.Visible = true; if (!IsPostBack) { GridView1.DataSource = LinqDataSource1; GridView1.DataBind(); } }[/code]

Member Avatar for prasanthsagar
0
102
Member Avatar for infivivek

If you want to access the variables on a page from outsider page then just declare them public. later defining variables public you can access these variables by creating object of class.

Member Avatar for Lusiphur
0
125
Member Avatar for jerseydrex06

MYSQL is best for less bulky database handling ,in other hand if you are going to handle large database then sqlserver will be best option.

Member Avatar for ciint
0
186
Member Avatar for gahhon

No you can not use continue statement with if else statement. continue keyword is use for direct jump on loop entry point. if you require jump on if entry point use can place label and use goto statement in the scope of if_else statement.

Member Avatar for ciint
0
124

The End.