15,991,464 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Arun kumar Gauttam (Top 110 by date)
Arun kumar Gauttam
29-Sep-15 14:50pm
View
So this is my problem, that if i use MDF file with application,my full text search not work..
So now Whats the solution ???????
Can i remove
User Instance=True;
into my connection string
Arun kumar Gauttam
29-Sep-15 14:47pm
View
and i use this connection string:
add name="ITL" connectionstring="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ITL_Local.mdf;Integrated Security=True;User Instance=True;" providername="System.Data.SqlClient"
Arun kumar Gauttam
29-Sep-15 14:46pm
View
Dear Sir, How i attach database normaly,
if i create Setup of application then it is necessary to add mdf file with Application setup.
Arun kumar Gauttam
29-Sep-15 14:27pm
View
Cannot use full-text search in user instance
Arun kumar Gauttam
10-Oct-14 2:52am
View
sir,plz give me any link for this..
add scripts in my Appliation installation that run on the server to create my database..
Arun kumar Gauttam
1-Oct-14 1:13am
View
so what can i do,if i made a desktop application..
and it is necessary for me that i attached database with my setup....
and full text search is also very impotent in my application
Arun kumar Gauttam
30-Sep-14 14:39pm
View
but they not provide a proper solution,so i ask ...
Arun kumar Gauttam
22-Aug-14 0:34am
View
thanks sir,it work fine
Arun kumar Gauttam
21-Aug-14 10:13am
View
sir,plz provide any link for upgrade SQL instance...
Arun kumar Gauttam
18-Jun-14 23:22pm
View
thanks it work well
Arun kumar Gauttam
27-Feb-14 4:30am
View
i am Already done XML to Datatable conversition,using C#.net,which work well.
but now my need is convert Xml to Datatable using Store procedure,and the condition is when XMl formate is Like Above(Which i show in my question)
Arun kumar Gauttam
6-Jan-14 14:18pm
View
thanks sir...
Arun kumar Gauttam
17-Dec-13 0:31am
View
thanks...
Arun kumar Gauttam
17-Dec-13 0:31am
View
thanks....
Arun kumar Gauttam
12-Nov-13 3:34am
View
thanks.......
Arun kumar Gauttam
12-Nov-13 2:28am
View
if i bind fuction on SelectedIndexChanged event,then selected data will be lost and dropdown list data is Just Doubble, So for this i try this:
string yy = DdlSortingViaStar.SelectedValue;
DdlSortingViaStar.Items.Clear();
MakeDropDown();
DdlSortingViaStar.Text = yy;
And it work Fine,
Thank you very much,For suggestion.....
Arun kumar Gauttam
12-Nov-13 1:41am
View
private void MakeDropDown()
{
ListItem item1 = new ListItem("Only 1 Star", "1");
item1.Attributes["OptionGroup"] = "By Star Ratting";
ListItem item2 = new ListItem("Only 2 Star", "2");
item2.Attributes["OptionGroup"] = "By Star Ratting";
ListItem item3 = new ListItem("Only 3 Star", "3");
item3.Attributes["OptionGroup"] = "By Star Ratting";
ListItem item4 = new ListItem("Only 4 Star", "4");
item4.Attributes["OptionGroup"] = "By Star Ratting";
ListItem item5 = new ListItem("Only 5 Star", "5");
item5.Attributes["OptionGroup"] = "By Star Ratting";
ListItem item6 = new ListItem("View All", "6");
item6.Attributes["OptionGroup"] = "By Star Ratting";
ListItem item7 = new ListItem("Reviews With material Facts", "7");
item7.Attributes["OptionGroup"] = "By Material Fact";
ListItem item8 = new ListItem("Reviews Without material Facts", "8");
item8.Attributes["OptionGroup"] = "By Material Fact";
ListItem item9 = new ListItem("Only Text Reviews", "9");
item9.Attributes["OptionGroup"] = "By Review Type";
ListItem item10 = new ListItem("Only Video Reviews", "10");
item10.Attributes["OptionGroup"] = "By Review Type";
DdlSortingViaStar.Items.Add(item1);
DdlSortingViaStar.Items.Add(item2);
DdlSortingViaStar.Items.Add(item3);
DdlSortingViaStar.Items.Add(item4);
DdlSortingViaStar.Items.Add(item5);
DdlSortingViaStar.Items.Add(item6);
DdlSortingViaStar.Items.Add(item7);
DdlSortingViaStar.Items.Add(item8);
DdlSortingViaStar.Items.Add(item9);
DdlSortingViaStar.Items.Add(item10);
}
on page Load:
if (!IsPostBack)
{
MakeDropDown();
}
I also Try This
MakeDropDown();
Direct On Page Load
Arun kumar Gauttam
9-Oct-13 2:17am
View
Thanks........
Arun kumar Gauttam
9-Oct-13 2:17am
View
thanks.........
Arun kumar Gauttam
27-Aug-13 9:36am
View
i am not registered any use control at master page,
i just add <%@ MasterType VirtualPath="~/Site.Master" %> to Content Page and i thing master page automatically Access the user control,
But it is not work...
so plz suggest me what can i do,(How i registered user control at masterPage so i access That user control At code behind of master page )
Arun kumar Gauttam
27-Aug-13 9:31am
View
1. Question is very clear that i want to use User control method At Any Content page(and page Inherited master page)
2. For this i search at google and Find one trick(Solution) that if i access user control method at master page and then after call that master page method to my content page,
then,
If you have anser of first question then suggest me, Other wise i will Try Second trick,
Which is also suggest by pradippatel99 (at the solution 1 of this question Givin below)
Arun kumar Gauttam
27-Aug-13 9:05am
View
thank, for solution,
But i am unable to use
usercontrol.BindRepeater(); At master Page because usercontrol not find at master page:
i am also add <%@ MasterType VirtualPath="~/Site.Master" %> At contant Page(which inherited Master page), there is any other idea for this problem..
Arun kumar Gauttam
27-Aug-13 8:57am
View
when i inherit master page in content page then, i am unable to write
A.BindData(); because in that condition It will give error...
Arun kumar Gauttam
16-Jul-13 10:47am
View
thanks
Arun kumar Gauttam
16-Jul-13 10:47am
View
thanks
Arun kumar Gauttam
24-Jun-13 3:32am
View
ok no need of Reference i will try my self, thanks
Arun kumar Gauttam
24-Jun-13 3:09am
View
Any Reference Please ????
Arun kumar Gauttam
6-Jun-13 8:46am
View
ok i agree that i create dynamic <ul><li>,
then how i manage Repeat coloum="3"
Arun kumar Gauttam
6-Jun-13 7:52am
View
i already try this,
and the Property of data list is, we made whatever design in coding, when it display at browser, it convert lay out into tabel formate
Arun kumar Gauttam
3-Jun-13 8:20am
View
Deleted
vcxv
Arun kumar Gauttam
23-May-13 5:29am
View
thanks for suggestion,
Arun kumar Gauttam
23-May-13 4:47am
View
tell me just one thing,that i use linq with Sp ,or Not use LInq with Sp
Arun kumar Gauttam
23-May-13 1:55am
View
i agree, but my question is if i already use Linq then why i use Linq with Store produre,
and if i use Store produre then why i use Linq,
I think Linq and Store Produre, Both are Different techniques,
Then Why some Devlopers use Both at same project
Arun kumar Gauttam
23-May-13 1:17am
View
so problem is after scroll itemdatabound is not call,
Arun kumar Gauttam
11-May-13 0:58am
View
ok i use his code for datalist pagging also,
code work fine when we bind datalist in simple way,but if we bound data at "onitemdatabound"
its not show that data which we bound at i "onitemdatabound" and the resion is code initially bound 10 record and after this when we scroll down then web service is call and next data of data list is bound using java script,
so problem is after scroll itemdatabound is not call,
Arun kumar Gauttam
7-May-13 4:34am
View
and how i start web services ,before running asp.net code
Arun kumar Gauttam
25-Apr-13 15:24pm
View
now it will work but i am not fully satisfied with this solution, i think it just jugaad(not proper solution)
But thanks for solution,very good idea
Arun kumar Gauttam
25-Apr-13 9:39am
View
i am try this but it is not work,
thanks for reply
Arun kumar Gauttam
16-Apr-13 5:22am
View
Deleted
hkjhgk
Arun kumar Gauttam
8-Apr-13 8:47am
View
thanks sir,now it work perfectly
Arun kumar Gauttam
8-Apr-13 8:31am
View
your solution work fine, in some condition, but when i want to bind data on dropdown selected event then, it not work,
Because At Page_Init Event, Dropdown value is always null or blank,
whether i select some value in drop down
Arun kumar Gauttam
3-Apr-13 7:52am
View
i also Try This But Again Face an error:
List<string> lostring = new List<string>();
lostring.Add("A");
lostring.Add("B");
lostring.Add("c");
var v10 = from a in li.tbl_admin_Brands where lostring.Any(s1 => a.comp_name.StartsWith(s1)) select a;
DataList1.DataSource = v10;
DataList1.DataBind();
Erroir is:
Local sequence cannot be used in LINQ to SQL implementations of query operators except the Contains operator.
Arun kumar Gauttam
3-Apr-13 7:16am
View
if i try this:
var v10 = from a in li.tbl_admin_Brands where a.category.StartsWith("A") select a;
it work fine, And show result which start with "A",
But i want that Result Which Start with any Any of them("A" or "B" or "C") So for this what can i do
Arun kumar Gauttam
18-Mar-13 8:41am
View
what did you say, i am not looking to hire any one, i just want to code for import contact list of gmail,yahoo etc in my asp.net project
Arun kumar Gauttam
13-Mar-13 4:56am
View
i find solution for this problem but another problem is arise, which i share at solution2 of this problem.
Arun kumar Gauttam
12-Mar-13 9:05am
View
i also use your techniq but it not work
Arun kumar Gauttam
12-Mar-13 9:04am
View
if i use this then it also produce error:
public ISingleResult<tbl_admin_category> GetCategoryDetails(int id)
{
var v = li.SP_Category_Get(id);
return v;
}
Now The Error is
Cannot implicitly convert type 'System.Data.Linq.ISingleResult<sp_category_getresult>' to 'System.Data.Linq.ISingleResult<tbl_admin_category>'. An explicit conversion exists (are you missing a cast?)
Arun kumar Gauttam
12-Mar-13 8:39am
View
Error is:
Cannot implicitly convert type 'System.Data.Linq.ISingleResult<sp_category_getresult>' to 'System.Collections.Generic.IEnumerable<tbl_admin_category>'. An explicit conversion exists (are you missing a cast?)
Arun kumar Gauttam
12-Mar-13 8:29am
View
Please find my another Question,which is also releted to it,
http://www.codeproject.com/Questions/560532/linqpluswithplusstoreplusprocedureplususingplus3pl
Arun kumar Gauttam
12-Mar-13 5:27am
View
but we use Both of three in same project,
Like:
Create Store Procedure And drop It into LinqDataContext:
then use BLL to call that store Procedure,
And at last (Aspx.cs page) we call BLL function,
And in linq technology, Linqdatacontext behave like DAL:
Arun kumar Gauttam
12-Mar-13 5:17am
View
3 tier With linq using Store procedure
Arun kumar Gauttam
9-Mar-13 3:11am
View
No,
as it has been done on "code project" while asking question under "Related Entries"
Arun kumar Gauttam
7-Mar-13 13:23pm
View
code is right, and i also have image in my folder,
but i think when i upload image using ajax file uploader,
it not refresh full page because i am not use any button to upload file
Arun kumar Gauttam
6-Mar-13 2:22am
View
thanks
Arun kumar Gauttam
27-Feb-13 0:07am
View
I use It Like This And it Work Well:
thanks for it
var v = li.SP_Category_Get(id);
return (from c in v
select new tbl_admin_category()
{
id=c.id,
category = c.category,
category_img = c.category_img
}
).ToList();
Arun kumar Gauttam
26-Feb-13 23:53pm
View
wHAT Is Class1() In your Case
Arun kumar Gauttam
26-Feb-13 8:34am
View
I Try All Type Of Conversion And Try All Type Of Return (Like: List,IEnumerable,ISingleResult) But Error is Always Generate:
And If I not Use Store Procedure And Use This Method At BLL then No error Generated, And Code Work Well:
public IEnumerable<tbl_admin_category> GetCategoryDetails(int id)
{
var users = from user in li.tbl_admin_categories
select user;
return users.ToList();
}
Arun kumar Gauttam
26-Feb-13 8:29am
View
Error Msg Is:
Unable to cast object of type 'SingleResult`1[SP_Category_GetResult]' to type 'System.Collections.Generic.List`1[tbl_admin_category]'.
Arun kumar Gauttam
26-Feb-13 5:49am
View
i use This Article For Linq With 3 tier:
http://www.c-sharpcorner.com/uploadfile/a72401/linq-with-3-layer-architecture-insert-data-into-database/
Arun kumar Gauttam
26-Feb-13 5:43am
View
i used li as linq class connection obeject:
At BLL
LinqConnectionDataContext li = new LinqConnectionDataContext();
i used LinqConnectionDataContext As DAL:
Arun kumar Gauttam
13-Feb-13 5:08am
View
if i use session or hidden field, then problem is still same,
protected void UploadComplete(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
{
string path = Server.MapPath("~/Upload/") + e.FileName;
AjaxFileUpload1.SaveAs(path);
session["id"] = e.FileName;
}
when second file is uploaded then,
first file of seesion is overrite by second file, and next, second is overrite to third file,
so plz suggest me that, what can i do,
i think a solution: that if i got total number of uploaded image(file),
at the start of UploadComplete event then i find max limit of array repetition,
so,
if Ajax File uploader Have any property Like this, then plz tell me,
Example:
int count= AjaxFileUpload1.count();
Arun kumar Gauttam
24-Jan-13 6:25am
View
now it work fine, thanks for, answer
Arun kumar Gauttam
24-Jan-13 6:09am
View
it is not work,
first thing is pContent tag not support .text property at .cs page,
second is you can not use p tag at .cs page without apply runat tag,
so what can i do
Arun kumar Gauttam
23-Jan-13 2:31am
View
Deleted
i have no form1 because i use master page with parant page,
then what can i do
Arun kumar Gauttam
21-Jan-13 8:34am
View
your first solution work well in my condition, so thanks
Arun kumar Gauttam
19-Jan-13 2:29am
View
plz explain your problem briefly
Arun kumar Gauttam
18-Jan-13 5:42am
View
Deleted
jhk
Arun kumar Gauttam
18-Jan-13 5:42am
View
Deleted
hgk
Arun kumar Gauttam
8-Jan-13 2:15am
View
This is my problem:
chart chart1 = (chart)e.Item.FindControl("chartshow");
this is not support in gridview row command,
Try it,
Because i am able to write
RadioButton rd5 = (RadioButton)e.Item.FindControl("RadioButton5");
But Not This
chart1 = (chart)e.Item.FindControl("chartshow");
I thing Micro soft Not Provide this
Arun kumar Gauttam
8-Jan-13 0:44am
View
i find the solution,in google,
But Thanks,
because i properly understand my problem with the help of you
Arun kumar Gauttam
8-Jan-13 0:22am
View
i thing you not understand my problem,
my problem is i want to use chart control at rowcommand of gridview,
because i wand to bind chart control after click in a button which is in GridView
Arun kumar Gauttam
8-Jan-13 0:15am
View
Thanks for Trying But It not work for me
Arun kumar Gauttam
4-Jan-13 8:22am
View
i thing you not see the result of your query,
is,
userid totaldays
21 3
22 1
so your solution is wrong
Arun kumar Gauttam
4-Jan-13 2:07am
View
then you just tell me which is better
1. use store procedure with Linq,
2. use 3 tier Architecture with Linq,
According to security
Arun kumar Gauttam
4-Jan-13 2:04am
View
thanks
Arun kumar Gauttam
4-Jan-13 2:04am
View
thanks
Arun kumar Gauttam
4-Jan-13 0:10am
View
Deleted
plz help me its urgent
Arun kumar Gauttam
3-Jan-13 23:59pm
View
so plz explain me just one thing, that how i use this form in asp.net website, and how i insert all form data in data base after last button click,
in form all text box and button are in html,
and how i use that button or text box at code behind page,
codebehind page only support control which have runat=server tag,
then how i use like this:
string name=textboxName.text;
Arun kumar Gauttam
3-Jan-13 23:59pm
View
so plz explain me just one thing, that how i use this form in asp.net website, and how i insert all form data in data base after last button click,
in form all text box and button are in html,
and how i use that button or text box at code behind page,
codebehind page only support control which have runat=server tag,
then how i use like this:
string name=textboxName.text;
Arun kumar Gauttam
1-Jan-13 0:39am
View
it dose not matter that plugin use what technology,
i think it is in java script or html,
Arun kumar Gauttam
1-Jan-13 0:33am
View
plz open the:
http://www.sharethis.com,
it provide SHARING TOOLS plugin using some code,
but the problem is it share link of page where we put them,
but in my condition i have many comment at one page,(just like many sms on one page)
so now i want share all comment or sms one by one,
so for this i want use a sharing tool plugin, bottom of every comment, and share them,
now i think, i explain every thing
Arun kumar Gauttam
31-Dec-12 23:54pm
View
plugin means,
just like addthis plug in,
where all social network share button in one control,
like(facebook,twitter,google+ etc)
Arun kumar Gauttam
29-Dec-12 4:53am
View
thanks,your last solution is work fine,
thanks for it, i am trying for this solution at so many days,
but today i found the solution,with the help of you
Arun kumar Gauttam
29-Dec-12 3:13am
View
yes your solution is right,i want this query in linq,
and linq not support DATEPART function,
Arun kumar Gauttam
26-Dec-12 7:03am
View
Ok, Thanks For Help
Arun kumar Gauttam
26-Dec-12 6:51am
View
Its Means I put New Code For All Social Network sites,
One For Face book,
Other For Twitter,
And Next For GOggle++,???
It is Possible To put Only One Plugin Code For All Social Networking Sites,?
Arun kumar Gauttam
24-Dec-12 0:44am
View
sir plz put eject line then how i call "function mycarousel_initCallback(carousel)" and i pass "carousel" in that function, because with out parameter function is call easily,
Arun kumar Gauttam
22-Dec-12 21:04pm
View
ok,i Am sorry for my mistake
Arun kumar Gauttam
22-Dec-12 8:43am
View
ya i know but i just want to suggest Diffrent solution of this question
Arun kumar Gauttam
21-Dec-12 1:23am
View
if you think that answer is right then plz accept my solution.
Arun kumar Gauttam
18-Dec-12 4:36am
View
we are not able to use flash banner tool, because my project provide panel to every user, and we are not able to provide this type of software to every user, so we want to make a page,for gif generator,and then we store images in data base and then show every where in my project,
Arun kumar Gauttam
14-Dec-12 7:07am
View
ok ok, i am sorry, i have some misunderstanding about the question,
Arun kumar Gauttam
11-Dec-12 3:32am
View
i am use that code in just simple asp.net page, i not have any idea about wpf application
Arun kumar Gauttam
11-Dec-12 3:29am
View
i also try this, but not work
Arun kumar Gauttam
11-Dec-12 3:26am
View
i not use id, because i want use that class at many dropdowns,
Arun kumar Gauttam
11-Dec-12 2:10am
View
i compare date to today date
Arun kumar Gauttam
7-Dec-12 4:47am
View
how we use trigger in that case
Arun kumar Gauttam
5-Dec-12 6:47am
View
HoverMenuExtender work fine thanks,plz put this answer in next solution then i will accept your solution
Arun kumar Gauttam
5-Dec-12 6:31am
View
i don't understand any thing in your code,plz teach me step by step how it work
Arun kumar Gauttam
4-Dec-12 7:30am
View
ok thanks it work fine
Arun kumar Gauttam
4-Dec-12 7:21am
View
thanks for answering but your query return all rows again, but i want that query return all record of "teacher" first and then it return all record of "student" ,
Arun kumar Gauttam
4-Dec-12 2:34am
View
mail.ReplyToList.Add("me@mail-address.com");
i also try this but not work , what can i do,
can i change authntication of gmail to any other athontication, or it is not possible
Arun kumar Gauttam
4-Dec-12 2:20am
View
mailMessage.From = new MailAddress("me@mail-address.com", "My Name");
but when i use this it show my name on from field, but when i click on reply button it again take authentication mail id in to field
Arun kumar Gauttam
3-Dec-12 23:34pm
View
ok ok,if you not admit that my code is right, then i admit that my code is wrong,but plz try this just one time in your visal stdio,
Arun kumar Gauttam
3-Dec-12 14:47pm
View
and if you not agree with my code then plz try it your self,because i work 9 hour regularly on that code.
Arun kumar Gauttam
3-Dec-12 14:42pm
View
resion behind this is that this code send mail only random time,same code is give error on second time when we execute the code, so i tried many code but i face same problem so at last i try my method and recall the codd again when error arise, so it work fine for me. this is 100% sure that my code is correct because i use it in so many websites. So plz remove my down votes
Arun kumar Gauttam
3-Dec-12 12:57pm
View
I don't understand the meaning of your question,plz explain it in proper way
Arun kumar Gauttam
3-Dec-12 2:28am
View
you need to just change condition on my upper code:
if(textPaid1.text="What value";
DrpLocation1.text="paid";
there is no need of java script, use only asp.net code
Arun kumar Gauttam
29-Nov-12 5:23am
View
Thanks,abhi try kiya nahi hai par sayad ye kaam kar jayega
Arun kumar Gauttam
29-Nov-12 3:23am
View
I use Your Method:
But Now Problem is how i access this javascript Fuction in Aspx.cs page, and how assign this value to string variable, plz help me,
I want use it Like ::::
string new=getQueryString().name;
Show More