Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
80% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
0 Endorsements
Ranked #718
~79.1K People Reached
About Me

IT Manager

PC Specs
HP Pavilion dv6000t Intel Duo Core 2.13 GHz 2 GB RAM 256 MB GeForce Display 12 Cell Battery lasts for…

261 Posted Topics

Member Avatar for Monyet

I have tech portal if you would be interested to share links. Iam offerig it free for now. But soon going to be paid.

Member Avatar for webconfigure
0
274
Member Avatar for anousha

please visit for more [URL="http://www.coderewind.com"]sample apps[/URL].

Member Avatar for Reverend Jim
0
786
Member Avatar for MasterNovice

You can also use the Package and Deployment project. Also there are options like Install Shield and Click Once which is bundled with VS 2005.

Member Avatar for ManojBalaji3001
-2
13K
Member Avatar for kodingkarthik
Member Avatar for choudhuryshouvi

Did you try http://NODE5/<my virtual dir>/. on the same IIS server? You need to first make sure the server itself recognizes the host name.

Member Avatar for choudhuryshouvi
0
230
Member Avatar for nithysony

You can actually read and download a collection of .NET questions [URL="http://www.coderewind.com/?categ&view_article=98"]from here[/URL]

Member Avatar for normantyago
1
503
Member Avatar for noobyy

Here is what you can do. Put a textbox on a form. And then place a listview control below. Now write the search code on the keydown of the textbox to show the results in the listview control below.

Member Avatar for anbarasan
0
230
Member Avatar for Paladine

I have written a simple login app which will answer your question. Not matter what page you access it will redirect to the login page. So you can make all pages protected. [URL="http://www.coderewind.com/?categ&view_article=34"]click here[/URL] to read and download the sample app.

Member Avatar for maqbul
0
7K
Member Avatar for geetajlo
Member Avatar for Reverend Jim
1
10K
Member Avatar for furjaw

This is pretty much doable and this functionality is called AutoComplete is Web Platform and Incremental Search in WinForms Arena.

Member Avatar for isharpk
-1
4K
Member Avatar for d_rev

You can do something like this by using an API call. Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long Private Sub Disablekeys() SystemParametersInfo 97, true, CStr(1), 0 End Sub Private Sub Disable_Click() …

Member Avatar for WebStone
0
233
Member Avatar for mrclean

See both way of accessing is different. If you plan to setup a server enviornment then your SBS will act as a domain controller and you will have better control over your users and resources on the server. But if your main purpose is to share files without any security …

Member Avatar for JorgeM
0
304
Member Avatar for daniasp

You can read and download a set of real life[URL="http://www.coderewind.com/?categ&view_article=98"] .NET questions here[/URL]

Member Avatar for mohitz123
0
453
Member Avatar for dorizuki

That was a good one! you can try drilling holes if that works for you! Else if you really need some solution then use the format utility and over write it with some other data.

Member Avatar for sheikhali449
0
319
Member Avatar for faiza
Member Avatar for madelinekim
-2
204
Member Avatar for geetajlo

This is pretty easy to do. You can tie the DataGrid to the filter function and pass textbox as a paramter to filter records on the Grid

Member Avatar for nduduzo
0
191
Member Avatar for Sunny28525
Member Avatar for ashishgh
0
704
Member Avatar for shilp
Member Avatar for Shubhib

First add this code on the .aspx file to add checkboxes to GridView <asp:TemplateField HeaderText="Delete" ShowHeader="False"> <ItemTemplate> <asp:CheckBox ID="chkDeleteRows" runat="server"/> </ItemTemplate> <FooterTemplate> <asp:LinkButton ID="lbDelete" runat="server" CausesValidation="False" CommandName="Delete" Text="Delete"></asp:LinkButton> </FooterTemplate> <ItemStyle HorizontalAlign="Center" /> </asp:TemplateField> Then locate protected void gv_RowDeleting(object sender, GridViewDeleteEventArgs e) for your GridView and place the code below. // …

Member Avatar for hopel7758
0
253
Member Avatar for muju_433

You cannot get the old password but if you want you can reset the old password to a new one. Retrieving the old password may be a tough task.

Member Avatar for happygeek
0
174
Member Avatar for rime

Please read my article on [URL="http://www.coderewind.com/?categ&view_article=58"]exporting to Excel in PHP[/URL] [URL="http://www.coderewind.com/?categ&view_article=58"]here[/URL]. Let me know if that helps. You can read lot of other articles on that [URL="http://www.coderewind.com/?categ&view_article=58"]site[/URL] too.

Member Avatar for rahulb310
0
138
Member Avatar for soso30

This error is a pretty generic Object Creation Failur message, but there are few things you can check. - Check if this object is registered properly on this machine. - Check if you have proper access permissions to that object. - Also get the latest version of Microsoft XML Parser …

Member Avatar for snep
0
147
Member Avatar for Agita

You are getting this error as dos cannot understand the space in the string and it truncates the rest of the file path. Try this command: del /s /q /f /"C:\Users\Phantom\AppData\Local\Microsoft\Windows\Temporary Internet Files\*" Also if the aobe doesnot work then try create a test directory with a oneword name for …

Member Avatar for Scotty22
0
259
Member Avatar for Steven_C

Here is the best sample I have for you. It implements a sample login system using Ascess DB. You can also read the [URL="http://www.coderewind.com/?categ&view_article=34"]full article[/URL] and [URL="http://www.coderewind.com/?categ&view_article=34"]download[/URL] the source [URL="http://www.coderewind.com/?categ&view_article=34"]here[/URL] Let me know if you need further help.

Member Avatar for vanjan3.0
1
704
Member Avatar for John Jacob

You can read and download a set of real life[URL="http://www.coderewind.com/?categ&view_article=98"] .NET questions here[/URL]

Member Avatar for Stenna1
0
321
Member Avatar for peermohammed

Do you want to find the ASCII equivalent of that interger value or simply want to convert to string?

Member Avatar for DhananjayPandey
0
262
Member Avatar for mazel
Member Avatar for Kurtismonger
Member Avatar for greenphpcoder
Member Avatar for kapil.tandon

[QUOTE=kapil.tandon;729857]i have created the code like this [code=asp.net]<asp:GridView ID="grd" runat="server" AutoGenerateColumns="False" onselectedindexchanged="grd_SelectedIndexChanged" Width="100%"> <Columns> <asp:BoundField DataField="ID" HeaderText="Budget ID" /> <asp:CommandField HeaderText="Delete" ShowDeleteButton="True" /> </Columns> </asp:GridView>[/code] a show delete field will appeat at run time. i want to delete the row from the gridview.can anybody tell me how to do it?when …

Member Avatar for sekharM
0
145
Member Avatar for dmarie3194

Congrats for your Dell Machine! Now let me give some background about wireless networks. First of all wireless networks have different standards and each standars has its own speed and frequency. These standards are defined by the IEEE (Institute of Electrical and Electronic Engineers). Available standards are: • 802.11a. This …

Member Avatar for c-tech
0
153
Member Avatar for TaoistTotty
Member Avatar for binoj_daniel

Microsoft Chairman Bill Gates once talked about putting a PC on every desk. Now Gates is talking about turning the desk itself - or a tabletop - into a computer. Microsoft is set to announce an ambitious new computing category today called "surface computing" to try to make it happen. …

Member Avatar for binoj_daniel
0
144
Member Avatar for binoj_daniel

Along the web development, email has made a huge contribution in wide spread of internet. E-mail is widely used and has a well-defined and universally implemented protocol and, it is a hot cake for hackers. It is easily done. Attacks on e-mail focus on two areas: the delivery and execution …

Member Avatar for sutherlin
0
82
Member Avatar for binoj_daniel

I have heard so many rumors about Windows Vista, so I thought about giving it a try. I started testing Vista during the beta testing but lost the flow due to other endeavors. During the testing phase I realized that it did not comply with all the third party products, …

0
69
Member Avatar for binoj_daniel

If you are a user of Windows Vista, as millions of PC owners are, you have the newest and most advanced version of Windows available. Over five years of development went into this software, which translates into millions of hours of effort by software professionals. Has anyone ever thought if …

0
86
Member Avatar for serkan sendur

How can I show alert messages if a changed happend on the form before moving to the next form to save. The idea is to show an alert to the user if has made changes to the first screen of a multi-step form and he moves to the second screen …

Member Avatar for binoj_daniel
0
179
Member Avatar for franco75

Download GZIP and TAR utilities from [URL="http://users.ncrvnet.nl/gmvdijk/utilities.html"]here [/URL]. These files require CYGWIN to work under windows. [URL="http://www.cygwin.com/"]Download it here.[/URL] The tar.gz extension means that the file is a TAR archive that has also been gzipped. So to extract it you first need to unzip it with gzip gzip -d [filename.tar.gz] …

Member Avatar for vvvexor
0
92
Member Avatar for shikeb

I think its personal preference, Both can perform all the tasks which .NET framework supports. If you are transitioning from Java or C++ then you would prefer C#. But if you were a VB programmer then you would like to go with VB.NET I can upload some eBooks if you …

Member Avatar for Dhaneshnm
0
282
Member Avatar for Ravi Kant
Member Avatar for scrypt3r

yes definetely this can be done? If you want i can write the app for you. let me know.

Member Avatar for Comatose
0
209
Member Avatar for morag

Lets do some linear and logical troubelshooting for this issue. First you need to make sure what is the exact error message from your ASP.NET site. To do this place add this tag under system.web. <customErrors mode="Off"/> This will enable the default errors to the screen and you can see …

Member Avatar for binoj_daniel
0
179
Member Avatar for preethi_ga

It is so obvious that you dont have any where condition in the update statement. uptext = "update cooldrinks set drinkname = @drinkname ,color = @color, price = @price" --> You need to add the [B]where[/B] clause here.

Member Avatar for binoj_daniel
0
145
Member Avatar for -mk-

Here is the code sample with a GridView named "[B]gv_Lookup[/B]" //Place this on the aspx markup page for the GridView control to show the delete checkboxes on each row and the delete button in the footer. [code] <asp:TemplateField HeaderText="Delete" ShowHeader="False" ItemStyle-HorizontalAlign="Center"> <ItemTemplate> <asp:CheckBox ID="chkDeleteRows" runat="server"/> </ItemTemplate> <FooterTemplate> <asp:LinkButton ID="lbDelete" runat="server" …

Member Avatar for binoj_daniel
0
481
Member Avatar for Renukavani

try either or the codes below: dropdown1.Items.FindByValue("0").Attributes.Add("style", "font-weight:bolder") or dropdown1.Items.FindByValue("0").Attributes.Add("style", "font-bold:true") Let me know

Member Avatar for Aneesh_Argent
0
168
Member Avatar for Exelio
Member Avatar for mcgarry101

Placing all the DB code inside the [B]Using [/B]keyword takes care of all the resource issues automatically.

Member Avatar for binoj_daniel
0
128
Member Avatar for paslanmaz

Here is $.01 comment on this. Both are equally powerful technologies. They both use frameworks offering similar functionality. Java was little behind on the GUI part but now it has caught up. I must say that there is a fierce competition between the two technologies. .NET latest version is 3.5 …

Member Avatar for binoj_daniel
0
134
Member Avatar for knowledgelover
Member Avatar for preethi_ga

You can use the GridView which is the most recent version of the DataGrid control in ASP.NET. You can make use of the GridView events RowCommand, RowDataBound, RowDeleting, RowEditing, RowUpdating which you can set in the GridView markup. See the below code markup. [code=asp.net] <asp:GridView ID="gv_Lookup" runat="server" DataKeyNames="LookupCD" AutoGenerateColumns="True" OnRowDataBound="gv_Lookup_RowDataBound" …

Member Avatar for binoj_daniel
0
148

The End.