116 Posted Topics
Re: Check out the article here: [url]http://www.kitebird.com/articles/mysql-xml.html[/url] | |
Re: Can you paste the error messages here? Can you access the app from the server? | |
Re: Please try this: [CODE]Protected Sub FormViewNews_DataBound(sender As Object, e As System.EventArgs) Handles FormViewNews.DataBound Dim pagerRow As FormViewRow = FormViewNews.BottomPagerRow Dim Active As Label = CType(pagerRow.Cells(2).FindControl("OFMLabel"), Label) If Active.[COLOR="Red"]Text[/COLOR] = "False" Then Active.[COLOR="red"]Text[/COLOR] = "Public" Else Active.[COLOR="red"]Text[/COLOR] = "Private" End If End Sub[/CODE] | |
Re: Check out the thread here and see if it's helpful for you. [url]http://stackoverflow.com/questions/496470/paging-sorting-grids-with-asp-net-mvc[/url] | |
Re: Hi anish, Check out the article here: [url]http://www.codeproject.com/KB/aspnet/fileupload.aspx[/url] | |
Re: Add semicolon after include [CODE]include 'connect.php'[COLOR="Red"];[/COLOR][/CODE] | |
Re: Hi, Check out this article and see if it helps. [url]http://www.4guysfromrolla.com/articles/052406-1.aspx[/url] | |
Re: Check out the explanation here and see if it helps you understand the differences between the two:[url]http://www.homeandlearn.co.uk/net/nets3p3.html[/url] | |
Re: Check out this one and see if it helps. [url]http://www.codeproject.com/KB/ajax/AjaxPhotoAlbumProject.aspx[/url] | |
Re: Try right-click a JPG file in Windows Explorer, click Open With->Choose default program, set a image or fax viewer you prefer to see if it works. | |
Re: [QUOTE]<div id="geo" class="geolocation_data"></div>[/QUOTE] I don't see you show any data in the div. Make it like this and try again. [CODE]<div id="geo" class="geolocation_data">default data</div>[/CODE] | |
Re: Hi Alex, Please check the sample below: [CODE]<html> <head> <script type="text/javascript"> function validateForm() { var x=document.forms["myForm"]["fname"].value; if (x==null || x=="") { alert("First name must be filled out"); return false; } } </script> </head> <body> <form name="myForm" action="demo_form.asp" onsubmit="return validateForm()" method="post"> First name: <input type="text" name="fname"> <input type="submit" value="Submit"> </form> </body> … | |
Re: Hi Slyvr, Check the post in Stackoverflow here and see if this is what you want. [url]http://stackoverflow.com/questions/6846350/updating-only-one-cell-of-a-table[/url] Hope it helps. | |
Re: You may refer to the article: [url]http://msdn.microsoft.com/en-us/library/bb397866.aspx[/url] | |
Re: Use the Path.GetFileName Method: [url]http://msdn.microsoft.com/en-us/library/system.io.path.getfilename.aspx[/url] | |
Re: The following article may be helpful for you: [url]http://www.vbdotnetheaven.com/UploadFile/ahussain/DevelopingRecordNavigation04092005005656AM/DevelopingRecordNavigation.aspx[/url] | |
Re: You may check out the article about Airline Reservation System on Wikipedia: [url]http://en.wikipedia.org/wiki/Airline_Reservation_System[/url] Regards, | |
Re: You may try Process Explorer and see which process is locking the file. [url]http://windowsxp.mvps.org/processlock.htm[/url] Hope it helps. | |
Re: You can try querying the name and check the count of returned result to see if any record exists. | |
Re: Can you be more specific with your question? | |
Re: You can also check out the following page about log-in control: [url]http://msdn.microsoft.com/en-us/library/ms178329.aspx[/url] | |
Re: Someone else seems met the same issue: [url]http://www.dotnetnuke.com/Resources/Forums/tabid/795/forumid/92/threadid/365381/scope/posts/threadpage/2/Default.aspx[/url] | |
Re: You can also check the article here: [url]http://msdn.microsoft.com/en-us/library/cc668201.aspx[/url] | |
Re: You may try hard-coding "Firstname" in CommandText and see if it makes any differences. | |
Re: You can use Visual Studio to create a C# ASP.NET Web Application. About how to connect and insert record to SQL Server, you can refer to the guide here: [url]http://www.codeproject.com/KB/database/sql_in_csharp.aspx[/url] Regards, | |
Re: In "if", you need to check whether the checkbox is checked rather than the text area. Try the code below. [CODE]function showtxtarea(id) { if (document.getElementById("checkbox1").checked == true) { document.getElementById(id).style.display = 'none'; } else { document.getElementById(id).style.display = 'block'; } }[/CODE] [CODE]<input name="1" type="checkbox" value="Cancer" id="checkbox1" onclick="javascript:showtxtarea('textarea1')" /><p>Cancer</p><br /> <textarea class="address" id="textarea1" … | |
Re: You can paste the related code here and see if we can help. | |
Re: using "textbox1_dropdownextender.Items.Add (object)". Regards, | |
Re: You can also check out the site: [url]http://asp.net-tutorials.com/[/url] | |
Re: you can use this way. [CODE]<html> <head> </head> <body> <form action="verify.php" method="post"><input type="text" id="Pword" name="Pword"/><input type="submit" /></form> </body> </html>[/CODE] [CODE]<?php $var_inputPassword = $_POST["Pword"]; echo($var_inputPassword); ?> [/CODE] | |
Re: You may take check out the following link. [url]http://stackoverflow.com/questions/1662953/jquery-tablesorter-conflicts-with-checkall-toggle[/url] | |
Re: Have you check the article here: [url]http://support.microsoft.com/kb/306269[/url] | |
Re: With Visual Studio, you can either use IIS web server or VS Development Server. Maybe you are using the latter? | |
Re: You may check this article about remove element: [url]http://msdn.microsoft.com/en-us/library/wkataz2t.aspx[/url] | |
Re: Thanks adatapost. The latter article is helpful. | |
Re: Hi Prasanth, You may check out the following article: [url]http://msdn.microsoft.com/en-us/library/aa479342.aspx[/url] Regards, | |
Re: You may take a look at this: [url]http://www.developerfusion.com/article/3918/socket-programming-in-c-part-1/[/url] Hope it helps. | |
Re: You can use new keyword to create a textbox dynamically. [CODE]Textbox textbox1 = new Textbox();[/CODE] And you can use TextChanged event. It'll fire whenever the content in the text box is changed. Regards, | |
Re: Check out the article below: [url]http://geekswithblogs.net/ranganh/archive/2005/04/25/37609.aspx[/url] Hope it helps. | |
Re: You may take a look at the post here: [url]http://programming.top54u.com/post/Store-and-Display-Images-from-MS-Access-Database-Using-C-Sharp.aspx[/url] Regards, | |
Re: You may check out the thread below: [url]http://forums.asp.net/t/1226758.aspx[/url] | |
Re: You may check the suggestion here: [url]http://www.hotscripts.com/forums/php/17700-remember-selected-option-dropdown-menu.html[/url] Wish it helps. | |
Re: You may check the following thread: [url]http://forums.asp.net/t/1231461.aspx[/url] Hope it helps. | |
Re: You may refer to the article below: [url]http://msdn.microsoft.com/en-us/library/fkx0cy6d.aspx[/url] Regards, | |
Re: You may check out the thread below for the info: [url]http://bytes.com/topic/php/answers/827223-passing-values-php-javascript[/url] Regards, | |
Re: You may check the thread here: [url]http://forums.iis.net/t/1166946.aspx[/url] Cheers, | |
Re: Are u developing the app for a specified customer? If so, you may need to discuss about the requirements with the company and see what fields they need. Also, you may leave a custom field so that customers can customize the fields if they need. Regards, | |
Re: You can use the code like the following: [CODE]Protected Sub btnBack_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnBack.Click Response.Redirect("DestinationPage.aspx") End Sub[/CODE] | |
Re: You may go through the following article for the info: [url]http://www.aspfree.com/c/a/ASP.NET/Uploading-Images-to-a-Database--C---Part-I/[/url] Cheers, |
The End.