8,966 Posted Topics
Re: Query strings aren't mentioned in the [spec](http://www.robotstxt.org/norobots-rfc.txt), so if you're lucky a crawler will do something with it, but don't count on it. Perhaps it can be done with rewrites, but am unsure how to get that working (if at all). | |
Re: > Can the panel have a class? Yes, `CssClass` just like other controls. > Do I target that id? You can, but you'll need to use something like this: <%= ThankYouPanel.ClientID %> So it's possible to get the id in jQuery/Javascript, but this won't work for CSS directly, as you … | |
Re: Granted. Everything is taken from you, and you are out on the streets. I wish nothing changes. | |
Re: With jQuery this might do it: $('select').on('change', function() { // get selected value var value = $(this).val(); // hide all $('td[name="Nome"]').addClass('hidden'); // unhide column where text matches selected value $('td[name="Nome"]').filter(function(){ return $(this).text() === value; }).removeClass('hidden'); }); | |
Re: > how to add Onclick in ancher tag in html htmlanchor.Attributes["onClick"] = "myOnClick();"; | |
Re: > Rewrite rule get variable problem What's the problem? | |
Re: Yes. It's true. The preview has been out for a while now. | |
Re: > Please guide me what to do? Might be best to try the Adobe forums. ![]() | |
Re: I think instead of trying to get this integrated in 2008, upgrading to the 2013 version would be much easier. They now offer a nice [Community edition](http://www.visualstudio.com/products/visual-studio-community-vs) of Visual Studio. | |
Re: http://jqueryui.com/autocomplete/ | |
Re: UPDATE videos SET embed = '<iframe src="http://example.com" height="504" width="921" frameborder="0" scrolling="no"></iframe>' WHERE id IN (5727,5723,5665) ![]() | |
Re: What do you need? A SQL query or LINQ? SQL would be something like this: SELECT P.ProductName, O.CustomerId, SUM(P.Quantity) FROM Product P, Order O WHERE P.OrderId = O.OrderId GROUP BY P.ProductName, O.CustomerId | |
| |
Re: > but this throws an exception every time. What exception exactly? | |
Re: Are you concatenating strings to build your query? If so, switch to using parameters. | |
Re: You could pass the start and end year as two parameters, and based on that generate your query within the stored procedure. | |
Re: I think your update query should be an insert query. What is the structure of your `atab` table? | |
Re: It means that an index entry knows the exact position of it's record on disk. | |
Re: Line 31 overwrites line 26. In between you should have what's on line 38. | |
Re: > how do I then place the class in the right place on the right page? If you use `<asp:HyperLink ID="HomeLink" runat="server">Home</asp:HyperLink>` instead of `a`, then you can add `HomeLink.CssClass = "active";` server-side where needed. | |
Re: > Can this be moved onto the correct thread diafol? Unfortunately, we cannot merge threads. | |
Re: > I'm having problem with uploading the file to the server. What problem? | |
Re: You mean endorsements? The overview shows the total, the icon in Software Dev the sub-total for that forum. | |
Re: That means that the query you are trying to execute is faulty. Show the query if you need more information about what exactly is wrong. | |
Re: If you publish your web project, you should have all the files they need to put on the server. If you accept file uploads or need logging, you may need to instruct them which folders need to be created additionally and given write permissions. As for the database, the web.config … | |
Re: Why not use: SELECT GROUP_CONCAT(mobno1) AS mobno1, GROUP_CONCAT(mobno2) AS mobno2 FROM custreg | |
![]() | Re: Default access is `private`, so making your properties `public` will solve this. public class TCard { public int suit; public int rank; } ![]() |
Re: Why not use an IDENTITY column? You can prefix the DO and zeros in a view or query. | |
Re: > Unknown column 'pcinumber' in 'field list' Does this column exist? | |
Re: There is an error in your query. Check for errors to see what error MySQL returns first. | |
Re: http://www.mikeindustries.com/blog/archive/2005/03/how-to-snatch-an-expiring-domain Old, but I don't think much has changed. | |
Re: Instead of $("#action").on("click", "a.a", function() { try using: $("ul.dropdown-menu").on("click", "li > a.a", function() { Side note: `id` should be unique, so it would be better to use `class="action"` | |
Re: Your query is wrong: `([UserName]` is breaking it. Looks like you copied something, but didn't get all of it. An insert query should look like this: Dim sql As String = "insert into tbl_datain ([UserName], AdminNo, CourseTile, ICNo, Gender, Address, TelNo, Email, Type) values ('" & txtname.Text & "', '" … | |
Re: Yes, it's doable. In your content pages you can just state that you are uing a master page: <%@ Page Language="C#" MasterPageFile="~/Site.Master" CodeBehind="Content.aspx.cs" Inherits="Content" %> My master page contains: <asp:ContentPlaceHolder ID="MainContent" runat="server"> </asp:ContentPlaceHolder> My content page has this: <asp:Content ContentPlaceHolderID="MainContent" runat="server"> <!-- Your content goes here and will be rendered … | |
Re: > THe date fields should be input in any this format Is there a specific reason you haven't used a DateTimePicker? For an empty field you can use the RequiredFieldValidator. You can add as many validators to a field as you please. There's also the CustomFieldValidator if you want something … | |
Re: SELECT @line := @line + 1 AS line, persons.* FROM persons, (SELECT @line := 0) temp |
The End.