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


Author filtered by: Archit Patel [x]
Question 24 Apr 2013   license: CPOL
i downloaded nopcommerce form it's official site. now problem is i don't know how to use it for my personal website i try to googling but i don't get satisfied answer. so please help me.
How to use nopcommerce by Archit Patel
Answer 15 Apr 2013   license: CPOL
Running the site using Visual Studio (package with source code)This step describes how to launch a site in Visual Studio. To run the site in Visual Studio, extract the full source code archive (.rar) to a local folder. Launch Visual Studio and select File > Open > Project/Solution. Navigate...
How to use nopcommerce by Archit Patel
Question 15 Apr 2013   license: CPOL
Hello..I download nopcommerce for my online shopping websites. but after open folder i don't know what to do with it so please help me how can i open it in vs2008 as well as how can i change in this source code.
Question 15 Apr 2013   license: CPOL
I am wondering how to implement a live chat on a web site using .NET (C#)And whether it can be linked to your Windows Live Messenger somehow.
Question 15 Apr 2013   license: CPOL
I need to know how to implement a payment gateway in ASP.NET for my billing based project.Is there one gateway enough to access all the bank account?
Answer 12 Apr 2013   license: CPOL
DECLARE @strIndustryID varchar(MAX)='1,2,3,4,5,6,7,44,55,66,77,88'DECLARE @strIndustryDescription varchar(MAX)='desc1|desc2|desc3|desc4|desc5|desc6|desc7|desc44|desc55|desc66|desc77|desc88'DECLARE @COUNT INT=0SELECT a, b FROM(SELECT a FROM dbo.Split(@strIndustryID,',')...
SQL
Question 11 Apr 2013   license: CPOL
Hello..i am new for mysql and java so i don't know how to Install connector/j and also which version of connector/j for mysql-installer-community-5.6.10.1. ?
Question 10 Apr 2013   license: CPOL
could anyone help me. I am building web application using vb .net 2008.when I debug using the common complier it can show the Message box, but when I use IIS server the message box can't be shown and cause error page.the error page say:"Showing a modal dialog box or form when the...
good by Archit Patel
Question 9 Apr 2013   license: CPOL
hello everyone..Anyone can explain difference between object[] m_Items = { "Tom", "Mitch", "Steve" };And string[] names = { "Tom", "Mitch", "Steve" };
C#
mdi form inside mdi form by Archit Patel
Answer 5 Apr 2013   license: CPOL
If you want to open another MDI Child in the same Parent from a Child, then you need to get the child to ask the parent. See here: Transfering information between two forms, Part 2: Child to Parent[^]If you want to open another MDI Child in the same Parent from a Child, then you need to get...
C#
Answer 5 Apr 2013   license: CPOL
protected string GetText(object oItem) { if (your logic) { return DataBinder.Eval(oItem, "_adTitle").ToString().Replace(keyword, "" + keyword + ""); } }add above method to cs code
C#
Question 5 Apr 2013   license: CPOL
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e) { GridView1.EditIndex = e.NewEditIndex; DropDownList d = (DropDownList)(GridView1.Rows[GridView1.EditIndex].FindControl("DropDownList1")); d.Items.Clear(); d.DataSource =...
C#
Question 4 Apr 2013   license: CPOL
I used datasource object to bind grid as well as edit grid. bind is work fine. but Update and delete not work for me. This is my code .
regular expression for url by Archit Patel
Answer 4 Apr 2013   license: CPOL
(http(s)?://)?([\w-]+\.)+[\w-]...
regular expression for url by Archit Patel
Question 4 Apr 2013   license: CPOL
what is the regular expression for a url ? in my web application i want to validate url when the user enters the url in textbox.url like: http://www.youtube.com/embed/OWj0fns95xw
Question 4 Apr 2013   license: CPOL
Hello Every one...I work on one desktop application in which i want to manage internet data use by particulate time duration. any way to get this type of data use in c# application.
MP3 Player in asp.net by Archit Patel
Question 27 Mar 2013   license: CPOL
i need to play mp3 file in asp.net,c# And i also try http://www.codeproject.com/aspnet/MP3PlayerControl.asp[^] but it not work for me.i want to play 1000 of mp3 with play list and above link code not suite for meplease help me .
reverse string in c# by Archit Patel
Answer 26 Mar 2013   license: CPOL
You would need to split the string into words and the reverse those instead of reversing the characters:text = String.Join(" ", text.Split(' ').Reverse())In framework 3.5:text = String.Join(" ", text.Split(' ').Reverse().ToArray())
C#
Answer 25 Mar 2013   license: CPOL
try this.Request.Url.ToString();
Question 25 Mar 2013   license: CPOL
Hello ......private string formatSizeBinary(Int64 size, Int32 decimals = 2) { string[] sizes = { "Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" }; double formattedSize = size; Int32 sizeIndex = 0; while (formattedSize >=...
C#
gridview data on demand by Archit Patel
Question 20 Mar 2013   license: CPOL
Hello..I have one grid view with 1000 row data and i do paging on that and pagesize is 5 but when i bind gridview at that 1000 data bind at once .but i want to bind(using simple way) 5 by 5 record when i change page.
using iframe in gridview by Archit Patel
Question 20 Mar 2013   license: CPOL
i want to use iframe(for youtube video) in gridview. how can i do it ?
Question 18 Mar 2013   license: CPOL
Hello.. I tried to copy a file from "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\db.mdf" to a different place. But a message pop outCannot copy db: It is being used by another person or program.Close any programs that might be using the file and try again.I restarted...
html to pdf conversion by Archit Patel
Answer 15 Mar 2013   license: CPOL
use itextsharp.dll and find on google.
Answer 15 Mar 2013   license: CPOL
Or SmtpServer oServer = new SmtpServer("smtp.gmail.com");Change to this line SmtpServer oServer = new SmtpServer("smtp.gmail.com", 587);
C#
Answer 15 Mar 2013   license: CPOL
try { string myEmailAddress = "A*********@gmail.com"; string mypwd = "***************"; string toEmailAddress = "xyz@abc.com"; string subject = "Try to send mail"; string mailbody = "this is try mail body"; ...
C#
Answer 15 Mar 2013   license: CPOL
C#
mdi form inside mdi form by Archit Patel
Answer 14 Mar 2013   license: CPOL
Thank you
C#
Answer 14 Mar 2013   license: CPOL
Thank you
C#
Answer 14 Mar 2013   license: CPOL
Thank you
C#
Question 14 Mar 2013   license: CPOL
how can i know my dll is full version or trial version
C#
Answer 14 Mar 2013   license: CPOL
your browser catch the page so you can do this . .1:: Response.Cache.SetCacheability(HttpCacheability.NoCache); 'put this line in all page load event'2 :: you have to reload page after login and logut try this may work for you
Question 14 Mar 2013   license: CPOL
exec sp_help 'tablename' give whole table information but i want only Column_name ,datatype and Length of table How can i get it ?
Question 13 Mar 2013   license: CPOL
Hello every one . . . How to get hard disk temperature in c#.
C#
Question 13 Mar 2013   license: CPOL
public static List GetDriveTemp() { List retval = new List(); try { ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\WMI", "SELECT * FROM MSStorageDriver_ATAPISmartData"); //loop...
C#
Question 13 Mar 2013   license: CPOL
Hello every one.. i use FileSystemWatcher for watch on File System. it can watch on particular folder or drive.But i want it on whole file system means it should watch on all drive. Any idea about this ?
C#
Question 13 Mar 2013   license: CPOL
How to create local server files search engines
C#
Answer 12 Mar 2013   license: CPOL
you can download iTextSharp.dll using google search. . .using iTextSharp.text.pdf;using iTextSharp.text;using iTextSharp.text.html.simpleparser; class string pdf(){Response.Clear(); Response.BufferOutput = true; Response.ContentType =...
C#
Question 12 Mar 2013   license: CPOL
Hello every one :-) How to create local server files search engine in asp.net(c#)
C#
Question 11 Mar 2013   license: CPOL
Hello I am trying to make ocr using Tessnet2 but it exit when "tessocr.Init" called.ocr = new Ocr();using (Bitmap bmp = new Bitmap(@"C:\OCR\IMG.jpg")) { tessnet2.Tesseract tessocr = new tessnet2.Tesseract(); tessocr.Init(null, "eng",...
C#
Answer 11 Mar 2013   license: CPOL
No you can't do it.
C#
Question 11 Mar 2013   license: CPOL
Hello how can i use tesseract in C#I want and ex. code for this ...
C#

Page 1 of 2
1 2


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