8,966 Posted Topics

Member Avatar for Blueie
Member Avatar for NuGG

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).

Member Avatar for Ali_42
0
144
Member Avatar for Violet_82

> 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 …

Member Avatar for Violet_82
0
235
Member Avatar for abelLazm

Granted. Everything is taken from you, and you are out on the streets. I wish nothing changes.

Member Avatar for James_40
8
9K
Member Avatar for jean_5

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'); });

Member Avatar for pritaeas
0
171
Member Avatar for sniigg

> how to add Onclick in ancher tag in html htmlanchor.Attributes["onClick"] = "myOnClick();";

Member Avatar for pritaeas
0
1K
Member Avatar for bro_1
Member Avatar for bro_1
0
89
Member Avatar for ddanbe
Member Avatar for gentlemedia
Member Avatar for longin
Member Avatar for rch1231
0
95
Member Avatar for zeeshan009
Member Avatar for diafol
0
159
Member Avatar for Violet_82

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.

Member Avatar for Violet_82
0
736
Member Avatar for myfit
Member Avatar for tranquillityuk

UPDATE videos SET embed = '<iframe src="http://example.com" height="504" width="921" frameborder="0" scrolling="no"></iframe>' WHERE id IN (5727,5723,5665)

Member Avatar for diafol
0
753
Member Avatar for woooee
Member Avatar for sadaquat_1

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

Member Avatar for pritaeas
0
107
Member Avatar for Xiao_1
Member Avatar for jarp

> but this throws an exception every time. What exception exactly?

Member Avatar for BitBlt
0
204
Member Avatar for MaddTechwf

Are you concatenating strings to build your query? If so, switch to using parameters.

Member Avatar for pritaeas
0
125
Member Avatar for Maideen

You could pass the start and end year as two parameters, and based on that generate your query within the stored procedure.

Member Avatar for isozworld
0
282
Member Avatar for ariflawsc
Member Avatar for zebnoon

I think your update query should be an insert query. What is the structure of your `atab` table?

Member Avatar for zebnoon1
0
325
Member Avatar for Raheeno
Member Avatar for Amr_Mohammad_R

It means that an index entry knows the exact position of it's record on disk.

Member Avatar for pritaeas
0
84
Member Avatar for Volkan_2
Member Avatar for jorwill.harion
Member Avatar for jorwill.harion
0
423
Member Avatar for Violet_82

> 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.

Member Avatar for Violet_82
0
401
Member Avatar for J.C. SolvoTerra

> Can this be moved onto the correct thread diafol? Unfortunately, we cannot merge threads.

Member Avatar for pritaeas
1
99
Member Avatar for xuexue

> I'm having problem with uploading the file to the server. What problem?

Member Avatar for xuexue
0
139
Member Avatar for RobertDecousta
Member Avatar for RobertDecousta
-1
96
Member Avatar for raxsun
Member Avatar for ddanbe

You mean endorsements? The overview shows the total, the icon in Software Dev the sub-total for that forum.

Member Avatar for ddanbe
0
139
Member Avatar for davy_yg
Member Avatar for Sarfarazkhan22
Member Avatar for Jespat4real
Member Avatar for Xiao_1

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.

Member Avatar for Santanu.Das
0
254
Member Avatar for Violet_82

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 …

Member Avatar for JorgeM
0
682
Member Avatar for blueguy777
Member Avatar for blueguy777
0
461
Member Avatar for PawelBujak
Member Avatar for humorousone

Default access is `private`, so making your properties `public` will solve this. public class TCard { public int suit; public int rank; }

Member Avatar for humorousone
0
24K
Member Avatar for devendradighe
Member Avatar for devendradighe
0
177
Member Avatar for usha_bandela
Member Avatar for usha_bandela
0
1K
Member Avatar for davy_yg
Member Avatar for pritaeas
0
435
Member Avatar for sergio_pb
Member Avatar for SalmiSoft

http://www.mikeindustries.com/blog/archive/2005/03/how-to-snatch-an-expiring-domain Old, but I don't think much has changed.

Member Avatar for pritaeas
0
85
Member Avatar for arafath077

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"`

Member Avatar for pritaeas
0
170
Member Avatar for Xiao_1

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 & "', '" …

Member Avatar for Santanu.Das
0
365
Member Avatar for Violet_82

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 …

Member Avatar for Violet_82
0
170
Member Avatar for Violet_82

> 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 …

Member Avatar for Violet_82
0
238
Member Avatar for jean_5
Member Avatar for pritaeas
0
258

The End.