Click here to Skip to main content
15,881,424 members
Please Sign up or sign in to vote.
2.71/5 (3 votes)
See more:
hi everyone
i have a problem with my tags blog in my web application
i want to have jquery tag like
[^]

i wrote a stored procedure for search my tags but idont know how can i combine jquery and c# together
any body help me?
Posted
Comments
Sampath Lokuge 5-May-14 2:05am    
Why do you need to do so ? jQuery is a client side library and c# is a server side one.So what's your requirement ?
marjan_1986 5-May-14 2:07am    
combine them
Sampath Lokuge 5-May-14 2:15am    
For what ?
marjan_1986 5-May-14 2:24am    
my blog post need has tags
i want to add tags so i found somthing like that in link
thats it!

Jquery is a client side library.C# is a server side library.

So if you want to merge them both then you have to use jQuery Ajax for that.

Please read below article for more info.

Using jQuery for AJAX in ASP.NET[^]
 
Share this answer
 
Comments
Correct. Take a 5. :)
Sampath Lokuge 5-May-14 3:59am    
Thanks Tadit(MVP). :) :)
Hey... Sampath, Most welcome buddy and my name is Tadit not Tadit(MVP). :P :D
That's only a recognition. :)
Sampath Lokuge 5-May-14 4:15am    
Yep,I know bro :).Just a stress release. :)
Ha ha. Ok. :D
with combobox telerik
so i do this
C#
RadComboBox1.DataSource = blogOp.get_All_Tags();
             RadComboBox1.DataTextField = "tagName";
             RadComboBox1.DataValueField = "tagId";
             RadComboBox1.DataBind();

in my sourcecode
ASP.NET
<telerik:radcombobox id="RadComboBox1" runat="server" autocompleteseparator="/" filter="StartsWith" itemsperrequest="5" xmlns:telerik="#unknown">
                   </telerik:radcombobox>


i couldent to use telerik controls
so thanks every one
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900