Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
51% Quality Score
Upvotes Received
11
Posts with Upvotes
9
Upvoting Members
8
Downvotes Received
10
Posts with Downvotes
8
Downvoting Members
7
8 Commented Posts
5 Endorsements
Ranked #341
Ranked #864

150 Posted Topics

Member Avatar for Newspiderman888

According to me following points will help to get a page rank & Trafic : » Include useful high-quality information on your site. » Add relative and useful Tags for each page of your web site. » Provide a Rich Site Summary (RSS). » Search Google for your website. » …

Member Avatar for Stucorner
0
2K
Member Avatar for hardikpatel

itextsharp is a good option. You may check the sample code here. [url]http://ask4asp.net/post/creating-PDF-using-NET-itextsharp-component-vb-NET.aspx[/url]

Member Avatar for Select_1
0
610
Member Avatar for thewebhostingdi

I want to ask about ESET Nod32 antivirus and its efficiency. I have just got its reseller who is selling it at $37/ 3 users license. Should I buy it or I should prefer AVG or McAfee.

Member Avatar for laah.wrizz
0
295
Member Avatar for john_beginner

Kindly refer below mentioned URL for your solution : [Send Mail using ASP.NET and C#](http://www.codeproject.com/Tips/371417/Send-Mail-Contact-Form-using-ASP-NET-and-Csharp)

Member Avatar for nevil120
0
1K
Member Avatar for thewebhostingdi

⇝ Register your domain name ⇝ Get a domain with your keyword phrase ⇝ Write unique content ⇝ Create a great keyword phrase ⇝ Choose a phrase that is popular, but not too popular ⇝ Use the keyword phrase in your title tag ⇝ Link to previous, succeeding, and related …

Member Avatar for karmatech
2
419
Member Avatar for sivamoni

You can easily fetch the html content of the any URL into the string using the string builder and webrequest .net classes. Refer this link for the sample code. [url]http://ask4asp.net/post/2009/05/13/fetching-URL-contents-into-a-string-using-HttpWebRequest.aspx[/url] If you are looking just to display the URL in the windows form then there is one component available named …

Member Avatar for nathanmannar
0
2K
Member Avatar for MIR

parked.com sedo.com namedrive.com Generally, parked.com's moderation of domains is difficult to pass.

Member Avatar for mana.ana.9216
0
529
Member Avatar for khess

Superb information, really helpful. Very good collection. Keep it up. Something to add. [B]Pmap - - Process Memory Usage[/B] The command pmap report memory map of a process. Use this command to find out causes of memory bottlenecks. # pmap -d PID [B]Iptraf - Real-time Network Statistics[/B] Features of Iptraf …

Member Avatar for Spencer_1
0
2K
Member Avatar for shashikumar s g

Here is another Logic for the same : #include<stdio.h> #include<stdlib.h> void main() { int a,b; printf("\nEnter two numbers: "); scanf("%d %d",&a,&b); printf("\nBefore swapping :"); printf("\nA=%d \t B=%d",a,b); a=a*b; b=a/b; a=a/b; printf("\nAfter swapping :"); printf("\nA=%d \t B=%d",a,b); }

Member Avatar for shashikumar s g
0
341
Member Avatar for mohankumar554

Actually, you may try the code shown here. It is working with windows application perfectly, not sure for the web application. [url]http://ask4asp.net/post/2009/06/09/add-update-windows-users-using-c-sharp-windows-user-management.aspx[/url] You just give it a try. As a pre-requisite, you may need your asp.net application run under the full trust level.

Member Avatar for suks
0
710
Member Avatar for Krstevski

The most likely, when you transmit the file and then trying to delete the transmitted file, you may receive the IO exception. Because system may try to delete a file that it currently in use. It is better to setup a scheduled task that will delete such files at specific …

Member Avatar for NarmadhaMano
0
196
Member Avatar for mrbarbarik

You can use property of your web.config: <forms name="YourAuthNameIs" loginUrl="~/Home.aspx" defaultUrl="~/Default.aspx" protection="All" path="/" cookieless="AutoDetect"/> When the expiration occurs they will be sent to the page that loginUrl is set to.

Member Avatar for remunance
0
131
Member Avatar for OM PARWANI

[QUOTE=OM PARWANI;1171991]I want to create antivirus in vb.net can any one tell me how to start creating antivirus as i am new one to .net it's an urjent please help[/QUOTE] Please check [url]http://www.vbdotnetforums.com/security/31603-creating-anti-virus-software.html[/url]

Member Avatar for XEN0
0
780
Member Avatar for jtodd

For this first you need to Detach the database from MSSQL 2003 then Attach the database in MSSQL 2008 Or you can also use export/import for this.

Member Avatar for tsmorris
0
249
Member Avatar for Tinnin

If you are using php as your web language then you can use the PHP’s built-in highlighter. for more detailed article on this you can visit following URL : [Highlight Source Code](http://www.sitepoint.com/highlight-source-code-php/)

Member Avatar for Tinnin
1
131
Member Avatar for hennyfarthing

If you are willing to spent some money on it, then make your website paid to post. You will get real members. Once you have enough posts in it and have higher ranking in search engines. You will obtain users by signup.

Member Avatar for muskan75
0
172
Member Avatar for vikas05nitb

For this you can do following : Check in each page load event if session is active or not!!! If session is not active then redirect to login page. And on click event of Logout button destroy/Clear session variable's value. This will fulfill all your conditions.

Member Avatar for thewebhostingdi
0
2K
Member Avatar for ronnel09

Try following Code : int count=0; int main() { int day1,day2,month1,month2,year1,year2,day11,month11,year11,year,month,day; printf("Enter the privous date (DD) \n"); scanf("%d",&day1); printf("Enter the privous month (MM) \n"); scanf("%d",&month1); printf("Enter the privous year,for not being ambiguous input plz enter in YYYY format,else it will be a y2k bug\n"); scanf("%d",&year1); printf("Enter the later date (DD)\n"); …

Member Avatar for rubberman
0
102
Member Avatar for SHASHWATH

I think following code is the solution of your query. /*Program of breadth first search algorithm using C Language*/ #include <stdio.h> #include <conio.h> #include <alloc.h> #define TRUE 1 #define FALSE 0 #define MAX 8 struct node { int data ; struct node *next ; } ; int visited[MAX] ; int …

Member Avatar for WaltP
0
209
Member Avatar for thechampp

> 2.I have one more question for example if i have "double a = 1/2" -> this return result 1 not 1.5, but > if i write "double a = (double)"1/2", then it will return result 1.5. Why i need to cast (double) before the expression ? If you don't …

Member Avatar for thewebhostingdi
0
166
Member Avatar for Vivek_1986

Make sure that your firewall is not blocking any remote MS SQL connection ports and your MS SQL server is online and accepting the remote connections. Here are the trouble shooting directions. [url]http://blogs.msdn.com/sql_protocols/archive/2005/10/22/483684.aspx[/url] [url]http://blogs.msdn.com/sql_protocols/archive/2005/10/29/486861.aspx[/url]

Member Avatar for reeeeeee
0
179
Member Avatar for DaveK0310

Check that your bios detect the harddisk properly (shows all the parameters). If not, then check the connections of your harddrive. If yes, then try to install WinXP in your Presario R3000 notebook with same harddrive using Windows Home XP cd. Best of luck.

Member Avatar for W1ND0W5
0
261
Member Avatar for versatile36

MSN do not provide publisher accounts. They do only have advertisers. And MSN are putting advertisements on their search engines, MSN and Bing.

Member Avatar for nathanlake
0
188
Member Avatar for jamesl22

It seems that, there is no problem with apache configuration. The problem is with the access rights of the index.html and index.htm files. Now try the chown command and change the ownership of these files to same as index.php file. For more information you can refer [url]http://www.checkupdown.com/status/E403.html[/url]

Member Avatar for ahromi
0
11K
Member Avatar for thewebhostingdi

I have installed Windows 7 today after that I tried to install McAfee Anti Virus Enterprise Edition 8.5 Windows 7 prompted that this application has known compatibility problems with the application that you are trying to install. Considering this as problematic, I gave up and did not install the AntiVirus. …

Member Avatar for Arnieeee
0
431
Member Avatar for pgspears
Member Avatar for koffee24
Member Avatar for Tjmahone
1
207
Member Avatar for happygeek

Nice and helpful review. System Mechanic is really useful tool. Thank you Davey Winder and iolo

Member Avatar for 1stukgent
0
693
Member Avatar for Rajnesh

There is no OS developed in C#. However, Vista may have started using the framework for other utilities. All major OSes including windws and linux are developed in C. To confirm, try to download and open the kernel of any linux flavour. We need to be very much proficient in …

Member Avatar for kvprajapati
0
929
Member Avatar for Galaxian63

Please check device manager of new system, you might need to install the driver of firewire port of new motherboard. One more thing you can try. Just install SP3. The driver might included and your system will become more secure and stable.

Member Avatar for thewebhostingdi
0
133
Member Avatar for thewebhostingdi

Some of keys of my TVSE gold keyboard get stuck. One of my friend suggest me to deep the keyboard in water for 3 to 4 hours and then let it be dry in sunlight for 1 full day. I want to confirm, how safe this trick is?

Member Avatar for caperjack
0
173
Member Avatar for lakmalnj
Member Avatar for tonis

Firefox is always better than IE regardless of their versions :) Firefox has eaten the IE in 2006 :)

Member Avatar for jaikanth123
2
310
Member Avatar for SCRIBUS

Remove every component from your motherboard. CPU, Memory, Display card all just plain motherboard. Then give power supply to motherboard. Still if you can not hear any beep chances of motherboard dead. The other possibility in this situation is the beep speaker gone. If you can replace that it is …

Member Avatar for hypersonic
0
124
Member Avatar for cmbicycles

It seems that, it is A Ram or SMPS issue, if it is not an operating system issue. If you can swap these two components very easily then try it first otherwise repair or reinstall XP first.

Member Avatar for Blitz-labs.com
0
168
Member Avatar for sunder.tinwar

Refer following URL: [url]http://www.squid-cache.org/Doc/config/acl/[/url] Although, this is exhausted but really helpful.

Member Avatar for frankken2
0
320
Member Avatar for CMSHelper

If you want to drive traffic from Google, then you must have a good and more contents on your website. You also need to take some SEO points in to the account. There are also several promotion techniques. - Forum posting and blog commenting - paid promotion such as CPA, …

Member Avatar for joelchrist
0
295
Member Avatar for khalix

If it does not work, try with another same kind of working harddisk (IDE or SATA). If it does not work, the problem is with the connector of harddisk.

Member Avatar for Biker920
0
174
Member Avatar for ukao

Try to get live XP cd and boot your system from that CD. If your windows partition shows correctly then there is problem with your boot loader. If that CD can not access the windows partition then you have problem with your widows file system.

Member Avatar for happyrock
0
125
Member Avatar for porterd

This option removes the important system files first and recopies the files. So take care of power backup while you are installing. Moreover, it is recommended to use same service pack cd. (i.e. if in your system the windows XP is with service pack2 then use the service pack 2 …

Member Avatar for hradwarez
0
112
Member Avatar for Lolalola

There are some settings in bios like ‘CPU FAN SPEED’ or ‘CPU FAN STATUS’ etc. Check it and change it’s value appropriately.

Member Avatar for thewebhostingdi
0
82
Member Avatar for HogIT

Your decision should be based on your requirements. Post your requirements like the software you would like to use at home. How do you allow an internet access to other computers in the home? etc.

Member Avatar for HogIT
0
93
Member Avatar for Kooty

List of almost all the famous network monitoring tools with feature comparison is available at wikipedia: [url]http://en.wikipedia.org/wiki/Comparison_of_network_monitoring_systems[/url] Personally, I have used PandoraFMS and it was working fine including your requirement. As slowly you invest time in it, it will help you beyond your imagination and expectations, like sending alerts using …

Member Avatar for thewebhostingdi
0
132
Member Avatar for sunder.tinwar

Refer following URL: [url]http://www.squid-cache.org/Doc/config/acl/[/url] This is really helpful. I have bookmarked it.

Member Avatar for thewebhostingdi
0
92
Member Avatar for EdBeck

When you press ‘power button’, does CPU fan spins? Can you hear any beep? If you can here any beep, then check that beep pattern with your motherboard document and diagnose the issue.

Member Avatar for thewebhostingdi
0
262
Member Avatar for Stu8

Refer following link, That will help you to troubleshoot your issue. [url]http://social.technet.microsoft.com/Forums/en-US/w7itproperf/thread/9e71f600-7c62-4869-8236-964e93d17936[/url]

Member Avatar for finito
0
213
Member Avatar for NoisySilence

Check in the domain controller, is there account of this computer is created? If not, then create manually. This is a trick. Normally it should work. Verify service pack of your system. With service pack 1 and 2, this happens sometimes.

Member Avatar for thewebhostingdi
0
142
Member Avatar for nkswapnil

nice link by pcs365_4. Really helpful. After getting volume license you have to create an unattended disk of windows XP. This can be easily achieved by using software like nlite. As an alternative you can setup RIS (This requires some windows 2003 server knowledge).

Member Avatar for thewebhostingdi
0
112
Member Avatar for idlewild

Kindly provide some details like the operating system (version, 32/64 bit), the name of programs with which you are facing problem. And most importantly, what you have tried (i.e. the meaning of everything). These all details will help to recognize the problem. The more details you provide, the more accurate …

Member Avatar for abu taher
0
105
Member Avatar for crystalm36

It is a CPU hardware problem. There are wide varieties of reasons for this problem, range From simple loose connection, and dust particular in ram slot To the dead processor or motherboard. If you are not confident with hardware troubleshooting, then I recommend you to take your CPU to a …

Member Avatar for thewebhostingdi
0
137

The End.