I have done exactly in same way as told, but i am not getting the images in the TextEditor's top bar.Though they are functioning well but there image is not coming.
Reason could be that path is not in the correct format. how to give correct path ?
[Code]....
I think "content_css_url" , "media_url" properties are not assigned values in proper way. I have done in the same way but not getting the image on top of textbox.
Error 1 The resource object with key 'Label1TextKey' was not found. C:Documents and SettingsMayaMy DocumentsVisual Studio 2008WebSitesWebSite1Default.aspx 14
I designed a simple site with some css and jquery. All the css is in the header using and the javascript files are in a folder called Scripts and referenced in my site like below. Everything is beautiful locally, but on the server some objects such as a couple of my divs are out of their original positions, and my dropdown menus that use jquery don't work properly but they do work somewhat (like they slide down or fade). I have made identical folder structure in root on the web server. I am using .NET 3.5 and the server does support it.
Do you guys think it can be a path issue for my scripts? What could cause the css to move divs out of position? Does css or jquery behave differently on different servers?
each one uses an unordered list to display in the begining of the page loading the list is displayed with all its items under each other in an ugly way then it returns to the normal one line style.
I wish a way to display these lists properly from the begining of the page loading
I'm just using a simple slideToggle function of jQuery. It works properly in my HTML file. But whenever I take codes into a ASP.NET WebForm project, script doesn't work. I can't achieve slide effect.
Is this a known issue? It's probably a popular mistake done by developers though. What could be the problem?
(I didn't copy&paste any code because of I thought this is not a specific situation, but I can show codes if you want)
i am having and by using jquery ineed to assign another text "hello" to the label "lbl" through the jquery. and if we access the label "lbl" the text "hello" should come because the value "hai" is replaced with "hello" and if we write the below line i should get the new modified lable in aspx.cs file
I am drawing a grid using HTML and each tr element has it's own id. I want to be able to remove a tr on a button click, but not have to redraw the whole grid to show that the row has been deleted. I can do this using .hide(), but the problem is that I need to call a function to stripe my rows after, and since the row is still considered there, the striping doesn't work properly.
I have a checkbox on my project and I have textboxes as well. I tried some jquery code as you can see below for this function;
I would like to get the ctl00$MainContent$firstnametxt.text value to ctl00$MainContent$firstnamedrivertxt.text value when the checkbox is clicked and I want the ctl00$MainContent$firstnamedrivertxt.text to be null if the checkbox is unchecked. how can I do that? the below one doesn't work for me.
i am using JQuery UI Autocomplete with asp.net textbox.AutoComplete works right.but how can i assign selected ID of returned Data to an hiddenField?My server Side Function returned list of objects that contains (this is an example) :
public List<Employee> GetEmployeeList() { List<Employee> empList = new List<Employee>(); empList.Add(new Employee() { ID = 1, Email = "Mary@somemail.com" }); empList.Add(new Employee() { ID = 2, Email = "John@somemail.com" }); empList.Add(new Employee() { ID = 3, Email = "Amber@somemail.com" }); empList.Add(new Employee() { ID = 4, Email = "Kathy@somemail.com" }); empList.Add(new Employee() { ID = 5, Email = "Lena@somemail.com" }); empList.Add(new Employee() { ID = 6, Email = "Susanne@somemail.com" }); empList.Add(new Employee() { ID = 7, Email = "Johnjim@somemail.com" }); empList.Add(new Employee() { ID = 8, Email = "Jonay@somemail.com" }); empList.Add(new Employee() { ID = 9, Email = "Robert@somemail.com" }); empList.Add(new Employee() { ID = 10, Email = "Krishna@somemail.com" }); return empList; } and this is ASPX Code : <form id="form1" runat="server"> <div class="demo"> <div class="ui-widget"> <label for="tbAuto"> Enter Email: </label> <asp:TextBox ID="tbAuto" class="tb" runat="server"> </asp:TextBox> </div> </div> <asp:TextBox ID="TextBox1" runat="server"> </asp:TextBox> <asp:Label runat="server" ID="lbl" Text=""></asp:Label> <asp:HiddenField runat="server" ID="hidid" /> <asp:Button ID="Button1" runat="server" Text="Button" /> </form>
here is my jquery Code :
<script type="text/javascript"> $(function () { $(".tb").autocomplete({ select: function( event, ui ) { // now assign the id of the selected element into your hidden field $("#<%= hidid.ClientID %>").val( ui.item.ID ); }, source: function (request, response) { $.ajax({ url: "Default.aspx/FetchEmailList", data: "{ 'mail': '" + request.term + "' }", dataType: "json", type: "POST", contentType: "application/json; charset=utf-8", dataFilter: function (data) { return data; }, success: function (data) { response($.map(data.d, function (item) { return { value: item.Email } } ) ) } , error: function (XMLHttpRequest, textStatus, errorThrown) { alert(textStatus); alert(errorThrown); } }); }, minLength: 1 }); }); </script>
And this is My WEb Method Side Code :
<WebMethod()> _ Public Shared Function FetchEmailList(ByVal mail As String) As List(Of Employee) Dim emp = New Employee() Dim fetchEmail = emp.GetEmployeeList() Return fetchEmail End Function
In our web application we need to keep various company's settings. For eg "DiamondProdRefIDCaption","Shippingpickup","ZipCodeCaption","DefaultCountry","AllowToEditInvoice", etcThese settings are different for various companies and are placed in web.config as key-value pair.Initially, we have tried do simplify this process by adding a company_settings table in the DB so as to allow us to add companies on the fly. However, this method makes it very difficult to add a new setting
I have a class library and was to add a resource file to it to support both English and Spanish. Any tips as how I can do this? The language will be dictated by the user visiting the site. Would like to have to only load each resource file once and cache or set in static variable and avoid any overheads.
I have 2 asp.net mvc2 projects in a solution. One is normal site for visitors use and the other one is admin back-end which is going to be separated by sub-domains like [URL] and [URL] The scenario is like admin will add a new item(e.g product) with image and [URL] will use that image to display product. Both application are sharing one db. so there is no problem to get the item details that is coming from the db. but for item image that has been uploaded in admin directory([URL]- any idea how to get it from general domain [URL]to display? Also what is the best way of separating the resources like image files or even css or js files across sites and how to access them?
i've got a problem with asp.net routing. My route looks like this:
[Code]....
but if there is a directory with the same name (in my case: "Articles") in my root directory, asp.net routing doesn't work and causes the error: "The resource cannot be found."
I have an assembly called like X.Common.DLL. There is some resources files for multilanguage app. Let's say it Language.resx Language.en-US.resx....etc.... I have a web application which contains this above dll as reference... So how can I use this resources file in my web applications markup side?
Text="<%$ Resources:Class, ResourceKey %>" is not valid because of "Class" name is in another assembly...
want to create and use resource file in my application (VB.NET 2008). Can i use .resx file or should i convert it into .resources file? please tel me the steps to create and use resource file in VB.NET with sample code.
I'm new to c# programming..I'm using windows form application c# .netI have been given a .resources file. it contains 2 columns 1) key and 2) values.I have brought the contents of this file into a datagrid using dynamic table in between and using resource manager.Now i have to edit the value column in the datagrid and if i click on a GENERATE button i should create a new resource file and it has to be stored as a file. In the same way i should create many sucj resource file.