Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
252 views

How to avoid Adding runat=“server” destroying my server tags <%…%>

Adding runat="server" is not rendering my server tags <%...%> I have a masterpage with a few <li> for menu and since I have to set class=selected for the current page, I am using a ...
2
votes
1answer
89 views

Error while Embedding Xpath Code and Inline Server Tags

Grid View template field - <% if ((Convert.ToInt64(XPath("NoOfGuests")) < 0)) { %> <asp:ImageButton ID="imgbtnAddResByList" runat="server" ...
2
votes
2answers
448 views

Problem in Expression tag to bind string variable

I am binding path like that in <link> tag <link rel="stylesheet" media="screen" href='<%= AbsRoot_Path%>UserAccountTemp/css/reset.css' /> but it render like that... <link ...
1
vote
3answers
35 views

ASP.NET server tag with collon?

I searched all around, but could not find any reasonable explanation. I found <%: tag in one of the projects. It works like <%= tag. I could not find any description on this tag I only found ...
1
vote
3answers
675 views

Accessing Server Tags inside Javascript in MVC project

I'd like to use some server tags inside a Javascript function: <%=Model.HtmlProperty%> In the past I have stored this value in a hidden input field, but when a property contains HTML you get ...
0
votes
3answers
75 views

The Server Tag is not well formed - RegularExpressionValidator

I am trying to write a RegularExpressionValidator which checks to make sure the entry into a Textbox is Integer (does not contain "." or ",", only integer values like "500") But I have encountered ...
0
votes
4answers
74 views

ASP.NET: Can you use server tags to embed C# or VB.NET expressions into a Javascript function?

I have an enum called SiteTypes that contains several values that are all bound to a dropdown list. On the client side, I need to check this dropdown to see if the selected value is one of those enum ...
0
votes
1answer
339 views

inline server tag not working for asp.net control

Following is not working <asp:TemplateField HeaderText='<%=class.getText("Address")%>' SortExpression="FirstName">blah blah</asp:TemplateField> I cannot use "#" as this is not ...
0
votes
2answers
195 views

ServerTags don't work in OnClientClick

<asp:button runat="server" Text="Save as" OnClick="btnSave_click" OnClientClick="if(!Check('<% # tb.ClientID %>')) return false; return Object();" ...
0
votes
5answers
1k views

<%# server tags in jquery

I am very new to jQuery and have got a quick question. I wish to use my server side classes in my jQuery code, something similar to this: $(document).ready(function() { var temp = <%# myClass.Id ...
0
votes
2answers
573 views

Why is my onbeforeunload not running now when it was before? Or AJAX failing on second identical command?

This follows on from this question This was working: <body onbeforeunload= "ajaxRequest('UnlockQuery.ashx?QueryID=266&UserID=11631');"> This was created using the following in the aspx ...