Software's Posts
Nairaland Forum › Software's Profile › Software's Posts
1 2 3 4 5 6 7 8 ... 54 55 56 57 58 59 60 61 62 (of 64 pages)
@mustay ManU are steping on the tigers tail o. Meeeeeeeeeeeen na prayer make we dey fire o. They seem to be very very hot. they dont wanna loose any match despite some little injured players. Na our Cup sha, nobody can collet it from us Chelsea for Life! |
@Razor Pls, Where did u get that pic from? i would like it, if you could share the link. Thanks |
Seun:My brother, this is Reality o. Witches exist. If u need to know some witch, perhaps i could give you a number to call. lol It is real o My brother. The Guy in that senario, is my Brother's Friend. Its very true bro |
I was told of a story of two couples who were about getting married. Plans and arrangements, were already on for the wedding Ceremony. Just about 1month to the wedding, the couples, went for a night vigil in their church, During the vigil, The girl started screaming, confessing, that she is a witch, and that she has killed many e.t.c I was told the guy RAN away to UK leaving the girl. I was wondering, if u were to be in this Situation what would you do, as a guy or a girl ?( In both cases) Lets keep it rolling. Thanks |
Thanks so much Mr Seun. I feel u Jare. Thanks so much God bless |
@ Akolawole Baba i hail u o. "BABA PEACE" take care! |
Wassup guys. Up chelsea Always winning. We are the winning Club. Bolton messed up today. Its only Arsenal they can Do strong head with. Congrats guys. Take care Blues Rule |
My Brother and Sister, I hope so o. Cos if those guys should leave, its gonna take some time for chelsea to come back strong. I pray they dont leave |
I Posted a New topic in the romance section today. I began to get response, but suddenly i began to get this error "An Error Has Occurred! The topic or board you are looking for appears to be either missing or off limits to you." This is the source of the page. https://www.nairaland.com/nigeria/topic-45002.0.html#msg969032 Admin pls i need ur help. Thanks in Advance |
i think its the girls who cheat most. I learnt they all have BACK UP BOYFRIEND. lol |
Guys, check this out Jose calls for pair to stay Friday 16 Mar 2007 Chelsea boss Jose Mourinho has urged John Terry and Frank Lampard to remain at Stamford Bridge amid rumours that both players are unhappy with the stance of the club over their new contracts. Lampard has yet to open discussions on a new deal but speculation mounted that the England man could be looking to move abroad after his agent was pictured meeting representatives from Italian side Juventus this week. Meanwhile, Terry is believed to be unhappy with the club's unwillingness to insert a clause in his new long-term contract guaranteeing him parity with the top owners at Stamford Bridge. Both players have been linked with a host of Europe's leading clubs, but Mourinho - whose own Chelsea future remains unclear - has called for his captain and vice-captain to remain with the Premiership champions. "I told them that what they have in their hearts is more important than any advice," he said. "I don't want to make decisions for players. I want to educate my kids to make their own decisions - good decisions but their own decisions. "The players have families, wives and fathers. Their fathers and wives are more important than the manager. Their decision is their decision and I will always respect it. "My opinion is they belong to Chelsea, they belong to Chelsea history. Chelsea's success and history is with them. "So when people have such strong links and feelings and success together, there is no reason for a change. "I would love to see them both be part of Chelsea history until the end. "But if a player, and I am not talking just about those two, has another dream, wants to play in another country or club, then no, that is something I cannot interfere with. "But I was very obvious with them to say I would love to see them stay in the club, especially if they are here until 2010, I would love to have them with me. They are special players and personalities." source:http://www.4thegame.com/club/cfc/news/201603/jose_calls_for_pair_to_stay.html wat do u guys think? Wat if they leave for another club? |
CHELSEA FOR LIFE. THATS THE BEST FC THE WORLD HAS EVER PRODUCED. ANY OTHER IS A counterfeit ![]() |
@ Gomez Thanks so much Gomez for your Prompt Reply. Yes i Have INstalled IIS and .net 2.0 My application, has been configured to use IIS. check out the codes Below. Thats my Web.config File. Would it be nessesary, I creat a virtual Diretory? If Nessecary, Pls Explain the steps for me. This is my first project on Asp.net. Thanks in Advance. God Bless These are the connection string used for your application specific data and ASP.NET provider (membership, roles etc.) --> <connectionStrings> <add name="connectionstring" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="|DataDirectory|JsskDb.mdf";Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/> <add name="MyProviderConnectionString" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=True;AttachDbFilename=|DataDirectory|JsskDb.mdf;User Instance=True" providerName="System.Data.SqlClient"/> </connectionStrings> <location path="changepassword.aspx"> <system.web> <authorization> <deny users="?"/> </authorization> </system.web> </location> <system.web> <!-- This is my theme applied to the site. . --> <pages theme="YellowShades"></pages> <compilation debug="true"> <assemblies> <add assembly="System.Data, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Xml, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> </assemblies> </compilation> <customErrors mode="On" defaultRedirect="customerrorpage.aspx"></customErrors> <anonymousIdentification enabled="true"/> <authentication mode="Forms"/> <system.web> <authorization> <deny users="?" /> </authorization> </system.web> </location> <location path="jobseeker"> <system.web> <authorization> <deny users="?" /> </authorization> </system.web> </location> <system.net> <mailSettings> <smtp from="emmanuel@kinsmen.com"> <network host="kinsmen" password="" userName="" /> </smtp> </mailSettings> </system.net> </configuration> |
@trendy I feel u jare. but she should just walk up straight up to him and kiss him. she should do that when he is kinda depressed. nice one. Stay cool |
Hi Guys. Pls i need some help. I am having problems with running my applications. I use Visual Web developer 2005 express edition, to Develop my program/ if i run with the development tool, my program runs well. but when i try running from the localhost or on the Remote Server it gives me this error below Server Error in '/' Application. -------------------------------------------------------------------------------- Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed. Details: To enable the details of this specific error message to be viewable on the local server machine, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly"/> </system.web> </configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="On" defaultRedirect="mycustompage.htm"/> </system.web> </configuration> Pls how can i go about this? I need help pls. Solutions, would be greatly appreciated, Thanks in Advance |
I think the best way, if u wanna kiss a man is to let him know, Body Lang would be best. But seems like the person asking, does not want to go into a relationship, she only needs a kiss, its gonna be difficult if uare with a serious guy. Trust me. We still Gat some very responsible guys in Naija. Keep ya head up! |
Na wa for this kiss thing o. |
yes o, Na true. They must not repeat that performance. its really not too good for the club now. We need to be strong, cos we still gat very difficult matches Ahead. Cheers! |
Nice topic. I think everyone, Irrespective of Gender is Free to have his or her own property. I think the men has to be blamed. Most men are jealous, especially when their wife is making some progress. Women keep it real, build as many as possible houses you could build. But always see ya husbands as the HEAD. Cheers! |
Why wount we win? We would definately win the match. Chelsea FC aint Little babies FC. Big Boys FClub ![]() Up Blues |
where is everybody, ? |
birds of the same feathers, wat do u expect ![]() |
@LoverBwoy Wetin dey worry u? Seems u be babalawo, I go tell some Chelsea fans wey be prayer warrior, make dem destory u for Prayers. Which club u even dey support? let us know, so we can know where to Yab u from. olodo ![]() Chelsea rules Up Jose |
@loverbwoy Wetin dey worry u sef? Abi watch ya mouth for this thread, otherwise we will knock u out ![]() Chelsea is still the main club u know, |
@Picture He Looks so old than his Age on that picture. The guy resemble OBJ ![]()
|
@ la Prinze Ur head too Corect. I always dey feel true chelsea fans, Not those Deep Green Snake Under green Grass. Parading themselves as chelsea fans. They know themselves, they are on this thread. ![]() Chelsea vs Val will end 3-1 In favour Of chelsea. ![]() Mark my words ![]() |
@Seun I feel u Jare. Dont lets those ideas die. Bring them out. Am sure everybody on NL would Definately Support You. Good Luck |
brushparke:@Brushparke Seems u didnt brush ya mouth, before posting this bunk. Most chelsea fans, Joined, based on the performance of "Almighty JOSE" and besides that, they have a brighter future, than they use to have. Arsenal had their own time. 99.9% of Nigeria Arsenal fans, joined the club because Kanu was there. But after Kanu left, they misguidedly remained there. Arsenal for the next 5years, would have nothing to offer. Wenger is a good caoch, but not a GREAT COACH. He needs to mingle with the bigga boys. Most expecially "Almighty JOSE" Wenger manages Arsenal like he is managing a National Team, This is no bogus, Chelsea is the Club, the future us brighter to Chelsea, even beyond we could imagine as fans. Chelsea Rules. ![]() |
@ Damose God bless ya jare, and other true chelsea fans ![]() What u said was very right. CHELSEA ISNT OUT TO LOOSE. WE ARE WINNERS. CHAMPIONS FOR LIFE, ENJOY!!!!!!!!! ![]() |
victory is sure ;d ;d |
Chelsea vs Valencia hmmn its gonna be a difficult match, for both parties. I trust Chelsea ![]() |
@ Razzor, Pls when would the alex guy be joining chelsea, ? |
1 2 3 4 5 6 7 8 ... 54 55 56 57 58 59 60 61 62 (of 64 pages)


