116 Posted Topics

Member Avatar for tatarao25

Check out the article here: [url]http://www.kitebird.com/articles/mysql-xml.html[/url]

Member Avatar for catherine sea
0
77
Member Avatar for uhgarrett24
Member Avatar for mrjimoy_05

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]

Member Avatar for crishlay
0
164
Member Avatar for riya_developer

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]

Member Avatar for crishlay
0
292
Member Avatar for bangla
Re: join

Check out the sample here: [url]http://www.tizag.com/mysqlTutorial/mysqljoins.php[/url]

Member Avatar for MeSampath
0
101
Member Avatar for anish.anick

Hi anish, Check out the article here: [url]http://www.codeproject.com/KB/aspnet/fileupload.aspx[/url]

Member Avatar for catherine sea
0
64
Member Avatar for oddcarout

Add semicolon after include [CODE]include 'connect.php'[COLOR="Red"];[/COLOR][/CODE]

Member Avatar for Stefano Mtangoo
0
405
Member Avatar for Paradox 99

Hi, Check out this article and see if it helps. [url]http://www.4guysfromrolla.com/articles/052406-1.aspx[/url]

Member Avatar for catherine sea
0
208
Member Avatar for Shane08003

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]

Member Avatar for adam_k
0
156
Member Avatar for britybee

Check out this one and see if it helps. [url]http://www.codeproject.com/KB/ajax/AjaxPhotoAlbumProject.aspx[/url]

Member Avatar for ddymacek
0
279
Member Avatar for sganandhsg

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.

Member Avatar for sganandhsg
0
89
Member Avatar for trektrak

[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]

Member Avatar for trektrak
0
306
Member Avatar for alex8206

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

Member Avatar for stanleyben
0
554
Member Avatar for Slyvr

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.

Member Avatar for catherine sea
0
82
Member Avatar for brightline

You may refer to the article: [url]http://msdn.microsoft.com/en-us/library/bb397866.aspx[/url]

Member Avatar for catherine sea
0
67
Member Avatar for new SE

Use the Path.GetFileName Method: [url]http://msdn.microsoft.com/en-us/library/system.io.path.getfilename.aspx[/url]

Member Avatar for crishjeny
0
160
Member Avatar for Netcode

The following article may be helpful for you: [url]http://www.vbdotnetheaven.com/UploadFile/ahussain/DevelopingRecordNavigation04092005005656AM/DevelopingRecordNavigation.aspx[/url]

Member Avatar for catherine sea
0
96
Member Avatar for prvnkmr194

You may check out the article about Airline Reservation System on Wikipedia: [url]http://en.wikipedia.org/wiki/Airline_Reservation_System[/url] Regards,

Member Avatar for catherine sea
0
104
Member Avatar for readbanana

You may try Process Explorer and see which process is locking the file. [url]http://windowsxp.mvps.org/processlock.htm[/url] Hope it helps.

Member Avatar for readbanana
0
178
Member Avatar for denmarkstan

You can try querying the name and check the count of returned result to see if any record exists.

Member Avatar for catherine sea
0
63
Member Avatar for abhie1990
Member Avatar for SaaDwTk

You can also check out the following page about log-in control: [url]http://msdn.microsoft.com/en-us/library/ms178329.aspx[/url]

Member Avatar for lal.ramesh
0
78
Member Avatar for archanaj39

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]

Member Avatar for catherine sea
0
66
Member Avatar for bbauraj

You can also check the article here: [url]http://msdn.microsoft.com/en-us/library/cc668201.aspx[/url]

Member Avatar for catherine sea
0
137
Member Avatar for TJVR
Member Avatar for catherine sea
0
206
Member Avatar for Naveed_786

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,

Member Avatar for shine_jose
0
92
Member Avatar for Dazaa

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

Member Avatar for catherine sea
0
162
Member Avatar for girishankar
Member Avatar for KushMishra
0
75
Member Avatar for sumit.jain7389
Member Avatar for sumit.jain7389
0
87
Member Avatar for alokas88

You can also check out the site: [url]http://asp.net-tutorials.com/[/url]

Member Avatar for mjhurdle
0
117
Member Avatar for knarffrank

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]

Member Avatar for Borzoi
0
225
Member Avatar for joycetan

You may take check out the following link. [url]http://stackoverflow.com/questions/1662953/jquery-tablesorter-conflicts-with-checkall-toggle[/url]

Member Avatar for catherine sea
0
380
Member Avatar for Sinha's
Member Avatar for catherine sea
0
316
Member Avatar for glennt

With Visual Studio, you can either use IIS web server or VS Development Server. Maybe you are using the latter?

Member Avatar for MichaelWClark
-1
115
Member Avatar for stolikp

You may check this article about remove element: [url]http://msdn.microsoft.com/en-us/library/wkataz2t.aspx[/url]

Member Avatar for glennt
0
122
Member Avatar for nick.crane
Member Avatar for prasanthsagar

Hi Prasanth, You may check out the following article: [url]http://msdn.microsoft.com/en-us/library/aa479342.aspx[/url] Regards,

Member Avatar for prasanthsagar
0
110
Member Avatar for tictac58

You may take a look at this: [url]http://www.developerfusion.com/article/3918/socket-programming-in-c-part-1/[/url] Hope it helps.

Member Avatar for tictac58
0
95
Member Avatar for sekhar_ddk

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,

Member Avatar for catherine sea
0
39
Member Avatar for guptaalok12

Check out the article below: [url]http://geekswithblogs.net/ranganh/archive/2005/04/25/37609.aspx[/url] Hope it helps.

Member Avatar for catherine sea
0
83
Member Avatar for selicon.valley

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,

Member Avatar for selicon.valley
0
115
Member Avatar for ankur_rishi2010

You may check out the thread below: [url]http://forums.asp.net/t/1226758.aspx[/url]

Member Avatar for catherine sea
0
53
Member Avatar for babydol

You may check the suggestion here: [url]http://www.hotscripts.com/forums/php/17700-remember-selected-option-dropdown-menu.html[/url] Wish it helps.

Member Avatar for lakshmi_lux
0
77
Member Avatar for Pari13
Member Avatar for dlrahul
0
190
Member Avatar for lm111

You may refer to the article below: [url]http://msdn.microsoft.com/en-us/library/fkx0cy6d.aspx[/url] Regards,

Member Avatar for lm111
0
118
Member Avatar for renoua

You may check out the thread below for the info: [url]http://bytes.com/topic/php/answers/827223-passing-values-php-javascript[/url] Regards,

Member Avatar for renoua
0
249
Member Avatar for Biscko

You may check the thread here: [url]http://forums.iis.net/t/1166946.aspx[/url] Cheers,

Member Avatar for nidhi_rajani
0
95
Member Avatar for qasimidl

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,

Member Avatar for catherine sea
0
59
Member Avatar for msman88

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]

Member Avatar for kvprajapati
0
94
Member Avatar for samkutty

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,

Member Avatar for mitulmodi.rcc
0
99

The End.