Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #22.6K
~5K People Reached
Favorite Tags

9 Posted Topics

Member Avatar for avinkx

Just as Dani suggested, you can use 301 redirect or use rel="canonical". All to make things easy, you should use your web host cpanel by checking redirect all non-www to www version of your site.

Member Avatar for bavya
0
102
Member Avatar for Giyuuu

Maybe you should look for a freelancer cos no one would help you with this. Try and start the work then post part giving you difficulties. Perhaps, Java is an easy language if you really wish to know it.

Member Avatar for ivy.inc.Hugh
0
154
Member Avatar for Excellent_1

For you to check for network connection, you can make use of the System.Net.NetworkInformation. See the below if(System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()) { Label1.Text = "There is active network" } else { Label1.Text = "No network detected"; }

Member Avatar for Emmason
1
3K
Member Avatar for fish786

You may try this void CreateBtnArr() { int x; if (!Page.IsPostBack) { for (x = 1; x <= 12; x++ ) { Button btnArr = new Button(); btnArr.ID = "mybtn" + x; btnArr.Text = "Button " + x; btnArr.Width = "130px"; btnArr.Height = "50px"; this.Form.Controls.Add(btnArr); } } }

Member Avatar for Emmason
0
331
Member Avatar for duptiagnas

First off, document.getElementsByName('r1') will return null result because there is no radio button with such name. Secondly, you didn't terminate most of the lines with semi colon (;). So the following should work 99% if not perfectly. Lol! <script> function displayRadioValue() { var score = 0; var ele = document.getElementsByClassName('r1'); …

Member Avatar for Emmason
0
734
Member Avatar for Syed_22

Just like every other programming languages, javascript has OR and AND functionality. && means AND in javascript while|| means OR in javascript. Example <script> function showAlert() { var flag=0; if(flag != "" && flag == 0) { alert ("The flag is zero"); } else if(flag != "" && flag == …

Member Avatar for Emmason
0
65
Member Avatar for Sananil

It will be difficult for you to monitor active users with just database flag as most people can just hit the browser close button to exit or even goto another site using the browser's address bar. So the best thing will be using sessions. Write some snippets of code for …

Member Avatar for Emmason
0
445
Member Avatar for pandglobal

Server A can never know what is going on in Server B database unless you chose to. Sending request from Server A to B does not reveal your Server B database though it depends on how you are sending the request. But the best way is to avoid querying your …

Member Avatar for Emmason
0
84
Member Avatar for C_Oleyers

I don't really understand your question though. But if it is what am thinking, you can try this or elaborate your question for good response. if (TextBox1.Text == "expression") { //Code to execute } As for the numeric check, you can try if (!IsNumeric(TextBox1.Text)) { MessageBox.Show("Only numeric value is allowed"); …

Member Avatar for tinstaafl
0
244

The End.