http://blogs.msdn.com/kaevans/archive/2006/05/23/605141.aspx
Regards,
Moustafa arafa
Enterpreneur and Technology advocate, Founder of Hadafsoft , M.Sc. of Computer Science, Engineer, & Solutions Architect. Follow me on twitter for quick updates: @mostafaelzoghbi
Wednesday, May 31, 2006
Monday, May 29, 2006
Problem in EventLog in Forms Authenticaiton
Dear,
If you try to use the below lines of Code....it will not if your authentication mode is Forms.... but it's work fine if your authentication mode is Windows..
EventLog aLog = new EventLog();
aLog.Log = "System";
aLog.MachineName = ".";
LogGrid.DataSource=aLog.Entries;
LogGrid.DataBind();
i tried alot... to solve it..... but nothing solve my problem... even the class doesn't support to take Network credintial object to set it at runtime...like any other classes in .Net ................... :(
Regards,
Moustafa arafa
If you try to use the below lines of Code....it will not if your authentication mode is Forms.... but it's work fine if your authentication mode is Windows..
EventLog aLog = new EventLog();
aLog.Log = "System";
aLog.MachineName = ".";
LogGrid.DataSource=aLog.Entries;
LogGrid.DataBind();
i tried alot... to solve it..... but nothing solve my problem... even the class doesn't support to take Network credintial object to set it at runtime...like any other classes in .Net ................... :(
Regards,
Moustafa arafa
Sunday, May 28, 2006
An Internet Audio Talk Show for .NET Developers
hi,
kindly visit the below link it contains the good webcasts for .net developers..
http://msdn.microsoft.com/dotnetrocks/
Regards,
Moustafa arafa
kindly visit the below link it contains the good webcasts for .net developers..
http://msdn.microsoft.com/dotnetrocks/
Regards,
Moustafa arafa
Saturday, May 27, 2006
Excellent web site for IT Resources & Consulting
Dear all,
visit this link below.........
http://www.gartner.com/
Regards,
Moustafa arafa
visit this link below.........
http://www.gartner.com/
Regards,
Moustafa arafa
MS Office 2007 BETA
Hi,
kindly visit the below link to see new videos on Office 2007 and its features.
http://www.microsoft.com/office/preview/default.mspx
Regards,
Moustafa arafa
kindly visit the below link to see new videos on Office 2007 and its features.
http://www.microsoft.com/office/preview/default.mspx
Regards,
Moustafa arafa
Monday, May 22, 2006
Microsfot architecture journal
Subscribe now...
http://www.architecturejournal.net/2006/issue7/
Full of good resources..and new trends in Technology.
Regards,
Moustafa arafa
http://www.architecturejournal.net/2006/issue7/
Full of good resources..and new trends in Technology.
Regards,
Moustafa arafa
Sunday, May 21, 2006
Introduction to RFID
Hi all,
a good article to know an overview on RFID...
RFID in Retail: An Introduction
http://msdn.microsoft.com/architecture/default.aspx?pull=/library/en-us/dnbda/html/RFIDIntro.asp
Regards,
Moustafa arafa
a good article to know an overview on RFID...
RFID in Retail: An Introduction
http://msdn.microsoft.com/architecture/default.aspx?pull=/library/en-us/dnbda/html/RFIDIntro.asp
Regards,
Moustafa arafa
Free web chart tool asp.net
Hi all,
i found free web charting tool,and i tried to generate charts...bar and pie...
it's a cool tool.
http://aspnet.4guysfromrolla.com/articles/120804-1.aspx
Regards,
Moustafa arafa
i found free web charting tool,and i tried to generate charts...bar and pie...
it's a cool tool.
http://aspnet.4guysfromrolla.com/articles/120804-1.aspx
Regards,
Moustafa arafa
Saturday, May 20, 2006
How to find control in Footer of the datagrid.....
To find any control which resides on footer on the datagrid,the following lines of code..solve the problem..
DropDownList ddlS=(DropDownList) DG1.Controls[0].Controls[DG1.Controls[0].Controls.Count-1].FindControl("DDLCountries");
this is to find dropdown list in the datagrid.....
the same you can make it to find any control in the footer.
Regards,
Moustafa arafa
DropDownList ddlS=(DropDownList) DG1.Controls[0].Controls[DG1.Controls[0].Controls.Count-1].FindControl("DDLCountries");
this is to find dropdown list in the datagrid.....
the same you can make it to find any control in the footer.
Regards,
Moustafa arafa
Solve the problem on view page source in IE ?!
Hi All,
Most Common problem which faces web developers who build asp.net applications,and they try to see the page source to verify rendered code....that after you try to open source nothing will open ,to solve the problem simply clear tempraroy internet files from IE menu go :
Tools --> Internet options -->General Tab --> Empty Temproray internet files.
enjoy !~
Regards,
Moustafa arafa
Most Common problem which faces web developers who build asp.net applications,and they try to see the page source to verify rendered code....that after you try to open source nothing will open ,to solve the problem simply clear tempraroy internet files from IE menu go :
Tools --> Internet options -->General Tab --> Empty Temproray internet files.
enjoy !~
Regards,
Moustafa arafa
Thursday, May 18, 2006
Deploying ASP.Net 2 web site in production...
Hi All,
This is a title for one of the top articles on C-Sharp corner web site ...
http://www.c-sharpcorner.com
you can find the article by the author name : moustafa arafa.
read it...send me your feed back...
Regards,
Moustafa arafa
This is a title for one of the top articles on C-Sharp corner web site ...
http://www.c-sharpcorner.com
you can find the article by the author name : moustafa arafa.
read it...send me your feed back...
Regards,
Moustafa arafa
Tuesday, May 16, 2006
How to Think Like a Programmer: Part 3
read this article..
How to Think Like a Programmer: Part 3
http://techrepublic.com.com/5254-6257-0.html?forumID=99&threadID=184332&messageID=2009237
&id=2926438&tag=nl.e606
Regards,
Moustafa arafa
How to Think Like a Programmer: Part 3
http://techrepublic.com.com/5254-6257-0.html?forumID=99&threadID=184332&messageID=2009237
&id=2926438&tag=nl.e606
Regards,
Moustafa arafa
Saturday, May 13, 2006
Ticky problem on Query String ?
Hi all,
if you try to pass a query string which contains "+" sign it's converted to space....
take care that you have to convert it to any character before passing it on query string.
specially that happens if you encrypt the data on the query string.
Regards,
Moustafa arafa
if you try to pass a query string which contains "+" sign it's converted to space....
take care that you have to convert it to any character before passing it on query string.
specially that happens if you encrypt the data on the query string.
Regards,
Moustafa arafa
Thursday, May 11, 2006
First Session for me on DotNet Boom
Hi All,
I gave the first session for me on DotNet Boom Community yesterday with topic
"What's New in VS 2005 IDE" , that feed back was wondeful....:) i'm happy.
The covered topics :
-VS 2005 New Features:
-Change tracking Feature
-Class designer Feature
-Surrounds with Feature
-object test bench
-Refactoring
-Intellisense enhancement
-Import/Export IDE settings
-Auto recovery
-find all references.
-Using region
-Clean solution
-Go to definition
-Search hidden text
-Control alignment
-Smart tags
-ClickOnce
-FxCop
Also, we also distribute our Gifts to the attendees..... :)
Regards,
Moustafa arafa
I gave the first session for me on DotNet Boom Community yesterday with topic
"What's New in VS 2005 IDE" , that feed back was wondeful....:) i'm happy.
The covered topics :
-VS 2005 New Features:
-Change tracking Feature
-Class designer Feature
-Surrounds with Feature
-object test bench
-Refactoring
-Intellisense enhancement
-Import/Export IDE settings
-Auto recovery
-find all references.
-Using region
-Clean solution
-Go to definition
-Search hidden text
-Control alignment
-Smart tags
-ClickOnce
-FxCop
Also, we also distribute our Gifts to the attendees..... :)
Regards,
Moustafa arafa
Wednesday, May 10, 2006
DotNet Boom is a recognized Online Community in GEEKS Conference
Tuesday, May 09, 2006
Atlas now is ready to use..........try it
Hi All,
Now postbacks nowadays,start using Atlas Framework to make use of AJAX technology....
alot of enhancements and extensibility ....try it today...
"
"Atlas" is a free framework for building a new generation of richer, more interactive, highly personalized standards based Web applications.
"
Regards,
Moustafa arafa
Now postbacks nowadays,start using Atlas Framework to make use of AJAX technology....
alot of enhancements and extensibility ....try it today...
"
"Atlas" is a free framework for building a new generation of richer, more interactive, highly personalized standards based Web applications.
"
Regards,
Moustafa arafa
Subscribe to:
Posts (Atom)