Click here to Skip to main content
Page 1 of 77
Page Size: 10 · 25 · 50


Tag filtered by:  .NET3.0 [x]
Tip/Trick 12 May 2013   license: CPOL
A basic yet generic state machine implementation
Catalog 12 May 2013   license: Commercial
Unsurpassed Documentation Comment generation and updating for C#, Visual Basic, C++/CLI, C++, C, Java and UnrealScript code. Keep your comments readable and in sync with the code with a minimum of effort. Plus other coding utilities.
Article 12 May 2013   license: CPOL
.NET Framework Cultures with Culture Specific Formats and Mapping with SQL Server Language. CultureInfo, DateFormat, Number Format, Currency Format, Percent Format, Infinity Format etc.
Catalog 11 May 2013   license: Limited Time Trial
IncrediBuild is an easy-to-use platform for accelerating Windows-based processes through advanced Grid Computing technology. IncrediBuild speeds up Visual Studio and make based code builds as well as data builds, scripts and applications.
Tip/Trick 11 May 2013   license: CPOL
A solution for monitoring Events called during test
Tip/Trick 9 May 2013   license: CPOL
How to bind Derived Type in MVC View
Answer 9 May 2013   license: CPOL
It depends on your UI library you are using. You should always tag your UI library or application type when asking any UI-related questions.The control you may need is usually called DateTimePicker, but the classes are, naturally, different. For...
Answer 7 May 2013   license: CPOL
There will be a web.config/app.config file existing on that application. Check that.That is xml file usually contains all the configuartion information for the application.You will find the key CheckPassword inside AppSettings tag under parent tag configuration inside that file something...
Answer 7 May 2013   license: CPOL
With this code you can read the variables of your program that is saved in the web.config or app.config.you can access to it from all forms.
Question 6 May 2013   license: CPOL
In my new project they have used one code likestring A = System.Configuration.ConfigurationManager.AppSettings["CheckPassword"];What is the use of this code? why the are using this?What could be the use of this code?
Answer 5 May 2013   license: CPOL
Hi Rajendra,you forgot to tell us what tool it was that gave you this "flaw". Or was this something produced from a human code audit?I found the exact phrase thrown at you by googling it and it turned up this interesting website: Common Weakness Enumeration: CWE-73: External Control of...
Question 5 May 2013   license: CPOL
Hi guys can you please help me to remove the flaw, during security testing i am getting the flaw atsqlCmd.Parameters.Add(prm);br mode="hold" />from the following code to save the image into sqlserver.string repname = "";string rowsid = GlobalClass.rowsID;if (chk_toref.Checked) { repname...
Answer 3 May 2013   license: CPOL
We can't give you an absolute answer from that code: it misses out far, far too much. For example, your query itself is assembled using a method "bagdata.Bagdata" which you don't show, and since the query string is probably going to be fairly fundamental to why you don't get the data you want,...
Question 3 May 2013   license: CPOL
Heloo guys! may i know whats wrong with the following code. i am not getting the data in the data set if i am using the following code. thanks string Bagquery; try { string dtfrom =...
Article 3 May 2013   license: CPOL
Implement a WCF service with Entity Framework that supports concurrent updates.
Question 3 May 2013   license: CPOL
Hi guys can you please do a favor for me, how can i remove the sqlinjection from the following code Thanks.cellevent = "ON"; grdbillDetail.ClearSelection(); string selectedcell = grdbillreport.CurrentRow.Cells[1].Value.ToString(); SqlCommand cmd =...
Answer 2 May 2013   license: CPOL
To avoid SQL Injection first thing is to use Parametrized Queries. For reference links please visit:C# SqlParameter[^]Using a Parameterized Query[^]Using parameterized Queries in C#[^]Using Parameterized Queries with the SqlDataSource (C#)[^]The above links that I provided will give...
Answer 2 May 2013   license: CPOL
Have a read up on SQL Parameters.http://www.dotnetperls.com/sqlparameter[^]http://csharp-station.com/Tutorial/AdoDotNet/Lesson06[^]
Answer 2 May 2013   license: CPOL
Do not concatenate strings to build a SQL command. It leaves you wide open to accidental or deliberate SQL Injection attack which can destroy your entire database. Use Parametrized queries instead. So, don't append the email address, parametrize it:con =...
Question 2 May 2013   license: CPOL
Dear all, can you please do a favor for me i am getting the sql injection while security testing of my appliction the code is given below, may i know how can i remove..thanks in advance..i = 0;j = 0;SqlDataReader dr;con = data.GetConnection();con.Open();sqlCmd = new...
Article 2 May 2013   license: CPOL
Imagine connecting church worship attenders with real-time content.
Article 26 Apr 2013   license: MIT
Reflexil is an assembly editor and runs as a plug-in for Reflector or JustDecompile. Reflexil is able to manipulate IL code and save the modified assemblies to disk. Reflexil also supports "on-the-fly" C#/VB.NET code injection.
Question 25 Apr 2013   license: CPOL
I am trying to integrate SAP with a .net web application using SAP nco 3 .net connector. I have successfully connected to the SAP system but when i try to create a sales order in SAP using BAPI "BAPI_SALESORDER_CREATEFROMDAT1" i get the following error: "Please enter sold to party or ship to...
Article 25 Apr 2013   license: CPOL
Unmanaged code application accessing data in a database via Web Services without a database provider.
Answer 24 Apr 2013   license: CPOL
First of all, you must create a module with this code:Option Compare DatabasePublic Function Aggregate(value As Integer) As String Dim retValue As String Dim db As Database Set db = CurrentDb() Dim sql As String sql = "SELECT * FROM T WHERE...
Question 22 Apr 2013   license: CPOL
Thanks for reply..But You hv suggested Saving Word 2007 Documents to PDF and XPS Formats which required office installed and an APi for conversion.. But while deploying/hosting my application on server only adding dll(12.0 library) is not sufficient and I dont know what are the requirments...
Question 22 Apr 2013   license: CPOL
I have a Table QID Qtext QType SeqNo Header QuestionGroupedTo31 sdsad Group Type 31 sdsd 3032 dsd Group Type 32 sd 3043 ssd Group Type 40 sd 3944 ssd2 Group Type 41 ssd2m 3945 dsds Group Type 43 asdasd 39i want the table structure to be ...
Article 21 Apr 2013   license: CPOL
XML serialization and deserialization using C#.
Answer 21 Apr 2013   license: CPOL
firstly i donno how r u gonna prevent from downloading!secondly with iTextSharp you can do iteitherread your whole downloaded file and using paragraph in iTextSharp overwrite that file to pdf.or you can do...
Answer 18 Apr 2013   license: CPOL
You cannot prevent anyone from entering in the address line anything this person wants. Anything at all. No matter how hard you try. This is not a part of your Web application. Wrong way. Forget it.—SA
Question 18 Apr 2013   license: CPOL
I am trying to prevent the modification of a URL by a site User .The Images of the site are not loaded when someone types in the Address bar ///a^&*(*(* at the end .How can i handle this ..
Article 16 Apr 2013   license: CPOL
Extending the standard ASP.NET GridView control to add a vertical scrollbar in the grid
Article 16 Apr 2013   license: MIT
GMap.NET is a powerful, free, cross platform, Open Source .NET control. It enables the use of routing, geocoding, and maps from Google, Yahoo!, OpenStreet in Windows Forms and Presentation, and supports caching!
Answer 14 Apr 2013   license: CPOL
XML tag are designed not for stripping them. They allow you to parse XML without any problems with detail of formatting, according strict syntax. By "stripping", you loose essential information on data structure. Please don't tell me you don't need structure. It does not really matter. If you...
Question 14 Apr 2013   license: CPOL
10387 CD1003 2012-08-08T00:00:00.000 ...
Article 14 Apr 2013   license: CPOL
A service concept is implemented here for seamless and connectionless computation from anywhere to anywhere.
Tip/Trick 9 Apr 2013   license: CPOL
Ho to marge Native and Managed codes under C++/CLI language and used .NET library from the legacy systems same as MFC or native C or ...
Question 8 Apr 2013   license: CPOL
It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.i'm getting this error in vb.net web application, how to solve this?
Article 8 Apr 2013   license: CPOL
Reads JPEG Exif data without the heavyweight and unnecessary instantiation of GDI+ objects.
Tip/Trick 8 Apr 2013   license: CPOL
Generic Lists or Generic Types contravariance without casting.
Answer 7 Apr 2013   license: CPOL
Default parameters are not part of C# 3.0, they came into existence with C# 4.0 only.So, I assume your tag for C# 3.0 should be C# 4.0.You may call the function bya) passing all actual arguments explicitlyb) pass the actual arguments by means of named parametersE.g. for...
Answer 7 Apr 2013   license: CPOL
Just create an overload, so you can simply call whichever you want:public Email_Sender(Boolean _Activity_INSERT, String _OppID, List attached_files = null,Boolean AutoSendEmail=false,Boolean _SuppressMessage=false){Email_Sender(_Activity_INSERT, _OppID, attached_files,...
Answer 7 Apr 2013   license: CPOL
Have a look here: Named and Optional Arguments (C# Programming Guide)[^]How to: Use Named and Optional Arguments in Office Programming (C# Programming Guide)[^]
Question 7 Apr 2013   license: CPOL
I have a function public Email_Sender(Boolean _Activity_INSERT, String _OppID, List attached_files = null,Boolean AutoSendEmail=false,String Mode_To_Send="Normal",Boolean _SuppressMessage=false) {}I need to invoke the above function by skipping the default parameter...
Answer 6 Apr 2013   license: CPOL
In most cases this error occurs when the database is placed in the directory of application (..\bin\Debug or ..\bin\Release). Move access database file into another folder, for example: C\MyDatabase\...

Page 1 of 77
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 13 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid