473,397 Members | 2,099 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Pb with skinID in templated columns having DataBinder.Eval

WT
Hello,

I have a usercontrol loaded in a page with a theme.

This usercontrol contains columns template with hyperlinks, with skinID.

The columns are not displayed, seems thta there is some not traceable
exception triggered and the all binding is stopped.

But this same named skinid is working for hyperlinks outside templates.

Is it a knwn problem ?

Thanks for help.

CS

Here is a sample of my code:

<asp:datagrid id="myDataGrid" runat="server" width="100%"
AutoGenerateColumns="False" EnableViewState="False" AllowSorting="True">
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:HyperLink Text="<%$ Resources:ResourcesGen,EDIT %>"
SkinID="editHyperLink" NavigateUrl='<%#
BuildUrl(Config.ModulesPath+"/Cont/ContEdit.aspx",PageNum,"ItemNum=" +
DataBinder.Eval(Container.DataItem,"ItemNum"))%>' Visible='<%# IsEditable
%>' runat="server" />
</ItemTemplate>
</asp:TemplateColumn>


May 18 '07 #1
14 1991
WT
More on this subject, stillno solution: on the first display ( PostBack
false) the datagridrows are not display, but on the postback due to a change
in the sort column, miracle ! everything is displayed !
In complement I add that viewstate is off for the Grid and that in the
Page_Load event (set with a delegate in OnInit, and autoevenetwireup=false)
is always binding the datagrid from the DB.
Onlychange is thta the sort event generates a seconjd binding ? Should I
bind twice when postback==false ?

I can't ask my users to do a postback :) ?
What could be the reason ?

Thanks for help.
"WT" <WT@newsgroups.nospama écrit dans le message de news:
ua**************@TK2MSFTNGP04.phx.gbl...
Hello,

I have a usercontrol loaded in a page with a theme.

This usercontrol contains columns template with hyperlinks, with skinID.

The columns are not displayed, seems thta there is some not traceable
exception triggered and the all binding is stopped.

But this same named skinid is working for hyperlinks outside templates.

Is it a knwn problem ?

Thanks for help.

CS

Here is a sample of my code:

<asp:datagrid id="myDataGrid" runat="server" width="100%"
AutoGenerateColumns="False" EnableViewState="False" AllowSorting="True">
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:HyperLink Text="<%$ Resources:ResourcesGen,EDIT %>"
SkinID="editHyperLink" NavigateUrl='<%#
BuildUrl(Config.ModulesPath+"/Cont/ContEdit.aspx",PageNum,"ItemNum=" +
DataBinder.Eval(Container.DataItem,"ItemNum"))%>' Visible='<%# IsEditable
%>' runat="server" />
</ItemTemplate>
</asp:TemplateColumn>


May 19 '07 #2
Hi CS,

For such issue, I hope you understand that without complete reproducible
code or project, there's really not much I can do here to point out the
root cause. Therefore, would you please post more complete code here for
reference? Thank you.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

May 21 '07 #3
WT
Here is a small sample of a user control containing a datalist with
templated items, codebehind follow., and skin file
When the skinid is present, nothing is displayed, when removed, it is Ok.
<%@ Control language="c#" AutoEventWireup="false" Inherits="FAQs"
Codebehind="FAQs.ascx.cs" %>

<%@ Import Namespace="Addon.Core" %>

<%@ Import Namespace="Addon.Settings" %>

<asp:datalist ID="myDataList" runat="server">

<SelectedItemStyle BackColor="Gainsboro"></SelectedItemStyle>

<ItemTemplate>

<asp:HyperLink ID=HyperlinkItem Text="<%$ Resources:ResourcesWTCRM,EDIT %>"
runat="server" NavigateUrl='<%# BuildUrl("/FAQsEdit.aspx","ItemID=" +
DataBinder.Eval(Container.DataItem,"ItemID") )%>' Visible="<%# IsEditable
%>" />

<SPAN class="normalBold"><asp:Literal text="<%$
Resources:ResourcesWTCRM,FAQ_Q %>" ID="Literal3"
runat="server"></asp:Literal>:&nbsp;</SPAN>

<asp:LinkButton ID=LinkbuttonItem runat="server" CausesValidation="False"
CommandName="select" Text='<%# DataBinder.Eval(Container.DataItem,
"Question") %>' title='<%# DataBinder.Eval(Container.DataItem,
"CreatedDate") %>'>

</asp:LinkButton>

</ItemTemplate>

</asp:datalist>

/// <summary>

-----------------------------------------------------------------------------------------------

/// IBS Portal FAQ module

/// </summary>

public partial class FAQs : UserControl

{

protected void Page_Load(object sender, System.EventArgs e){
BindData();}

private void BindData(){
FAQsDB questions = new FAQsDB();
try{
myDataList.DataSource = questions.GetFAQsGlobalized(ModuleID);
myDataList.DataBind();
}
catch(Exception ex)
{
System.Diagnostics.Trace.WriteLineIf(ModuleTraceSw itch.Sw.TraceError,string.Format("FAQs
BindData ex : {0}",ex));
}
}


#region Web Form Designer generated code

override protected void OnInit(EventArgs e)

{

InitializeComponent();

base.OnInit(e);

}
/// <summary>

/// Required method for Designer support - do not modify

/// the contents of this method with the code editor.

/// </summary>

private void InitializeComponent()

{

this.Load += new EventHandler(Page_Load);

}

#endregion

-------------------- named skin in skin file
<asp:HyperLink SkinId="editHyperLink" ImageUrl="img/WT_Edit.gif"
runat="server" />
CS
"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: Wp**************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

For such issue, I hope you understand that without complete reproducible
code or project, there's really not much I can do here to point out the
root cause. Therefore, would you please post more complete code here for
reference? Thank you.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

May 22 '07 #4
WT
Sorry I sent the version Ok, just replace the hyperlink with same id by
<asp:HyperLink ID=HyperlinkItem SkinID="editHyperLink" Text="<%$
Resources:ResourcesWTCRM,EDIT %>" .../>

"WT" <WT@newsgroups.nospama écrit dans le message de news:
%2****************@TK2MSFTNGP04.phx.gbl...
Here is a small sample of a user control containing a datalist with
templated items, codebehind follow., and skin file
When the skinid is present, nothing is displayed, when removed, it is Ok.
<%@ Control language="c#" AutoEventWireup="false" Inherits="FAQs"
Codebehind="FAQs.ascx.cs" %>

<%@ Import Namespace="Addon.Core" %>

<%@ Import Namespace="Addon.Settings" %>

<asp:datalist ID="myDataList" runat="server">

<SelectedItemStyle BackColor="Gainsboro"></SelectedItemStyle>

<ItemTemplate>

<asp:HyperLink ID=HyperlinkItem Text="<%$ Resources:ResourcesWTCRM,EDIT
%>" runat="server" NavigateUrl='<%# BuildUrl("/FAQsEdit.aspx","ItemID=" +
DataBinder.Eval(Container.DataItem,"ItemID") )%>' Visible="<%# IsEditable
%>" />

<SPAN class="normalBold"><asp:Literal text="<%$
Resources:ResourcesWTCRM,FAQ_Q %>" ID="Literal3"
runat="server"></asp:Literal>:&nbsp;</SPAN>

<asp:LinkButton ID=LinkbuttonItem runat="server" CausesValidation="False"
CommandName="select" Text='<%# DataBinder.Eval(Container.DataItem,
"Question") %>' title='<%# DataBinder.Eval(Container.DataItem,
"CreatedDate") %>'>

</asp:LinkButton>

</ItemTemplate>

</asp:datalist>

/// <summary>

-----------------------------------------------------------------------------------------------

/// IBS Portal FAQ module

/// </summary>

public partial class FAQs : UserControl

{

protected void Page_Load(object sender, System.EventArgs e){
BindData();}

private void BindData(){
FAQsDB questions = new FAQsDB();
try{
myDataList.DataSource = questions.GetFAQsGlobalized(ModuleID);
myDataList.DataBind();
}
catch(Exception ex)
{
System.Diagnostics.Trace.WriteLineIf(ModuleTraceSw itch.Sw.TraceError,string.Format("FAQs
BindData ex : {0}",ex));
}
}


#region Web Form Designer generated code

override protected void OnInit(EventArgs e)

{

InitializeComponent();

base.OnInit(e);

}
/// <summary>

/// Required method for Designer support - do not modify

/// the contents of this method with the code editor.

/// </summary>

private void InitializeComponent()

{

this.Load += new EventHandler(Page_Load);

}

#endregion

-------------------- named skin in skin file
<asp:HyperLink SkinId="editHyperLink" ImageUrl="img/WT_Edit.gif"
runat="server" />
CS
"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: Wp**************@TK2MSFTNGHUB02.phx.gbl...
>Hi CS,

For such issue, I hope you understand that without complete reproducible
code or project, there's really not much I can do here to point out the
root cause. Therefore, would you please post more complete code here for
reference? Thank you.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

================================================= =
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
================================================= =

This posting is provided "AS IS" with no warranties, and confers no
rights.


May 22 '07 #5
Hi CS,

I can see your BindData has a try/catch block, check if there's any
exception when first loaded.

Here's my test code that works fine on my side:

<%@ Import namespace="System.Data"%>
<%@ Control Language="C#" ClassName="WebUserControl" %>

<script runat="server">
private string BuildUrl(string url, string qs)
{
return url + "?" + qs;
}
private bool IsEditable
{
get { return true; }
}

protected void Page_Load(object sender, EventArgs e)
{
myDataList.DataSource = GetDataTable();
myDataList.DataBind();
}

DataTable GetDataTable()
{
DataTable dt = new DataTable();
dt.Columns.Add("ItemID", typeof(int));
dt.Columns.Add("Question");
dt.Columns.Add("CreatedDate", typeof(DateTime));

for (int i = 0; i < 10; i++)
{
dt.Rows.Add(i, "question " + i, DateTime.Now);
}
return dt;
}

</script>

<asp:DataList ID="myDataList" runat="server">
<SelectedItemStyle BackColor="Gainsboro"></SelectedItemStyle>
<ItemTemplate>
<asp:HyperLink SkinID="editHyperLink" ID="HyperlinkItem"
Text="Edit" runat="server" NavigateUrl='<%#
BuildUrl("/FAQsEdit.aspx","ItemID=" +
DataBinder.Eval(Container.DataItem,"ItemID") )%>'
Visible="<%# IsEditable %>" />
<span class="normalBold">
<asp:Literal Text="FAQ" ID="Literal3"
runat="server"></asp:Literal>:&nbsp;</span>
<asp:LinkButton ID="LinkbuttonItem" runat="server"
CausesValidation="False" CommandName="select"
Text='<%# DataBinder.Eval(Container.DataItem, "Question") %>'
title='<%# DataBinder.Eval(Container.DataItem, "CreatedDate") %>'>

</asp:LinkButton>
</ItemTemplate>
</asp:DataList>


Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

May 23 '07 #6
Hi CS,

Please feel free to let me know if there's anything else I can help.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

May 28 '07 #7
WT
Hi Walter,

I still have the problem, but I amshort in time and must freeze it for 1
week.
Anyway thanks for help.
CS

"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: Ik****************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

Please feel free to let me know if there's anything else I can help.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

May 28 '07 #8
WT
Hello Walter,

We are back on this problem, we have found a workaround replacing the
hyperlink with an ImageButton: everything works.

But for mind peace I would appreciate to understand where is the pb with
hyperlink.

Thnaks for help
CS
"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: Ik****************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

Please feel free to let me know if there's anything else I can help.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Jun 18 '07 #9
Hi CS,

Thanks for the update. Do you have a reproducible project to show the
problem of the ImageButton? Thanks.
Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Jun 19 '07 #10
WT
Thanks for answer.

I will ask for a small sample. It's difficult because we use a huge library
which contains all logic with custom controls, DB access, UI, etc...

We have also noticed that inserting a div around the hyperlink drives it to
run normally ??????
In fact problem seems to be in the usage of SkinID inside the hyperlink when
in a datalist item.

Without the div, hyperlink is not rendered totally we only get the <a with
the href='...' then nothing more: the </ais missing and the <imgnormally
rendered inside with a path to the image specified in the skinid is not
there.
When the div is there everything is rendered correctly ????

CS
Any idea ?

CS

"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: 0j**************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

Thanks for the update. Do you have a reproducible project to show the
problem of the ImageButton? Thanks.
Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Jun 19 '07 #11
Hi CS,

I think we can use some mock data to test the skin behavior.

Sorry I cannot tell exactly what might be wrong at current moment without
full code listing.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Jun 20 '07 #12
WT
Hello Walter,

Adding the virtual Render method in our code, with a try-catch around
base.Render we get an exception with:

Cannot use a leading .. to exit above the top directory.
at System.Web.Util.UrlPath.ReduceVirtualPath(String path)
at System.Web.Util.UrlPath.Reduce(String path)
at System.Web.Util.UrlPath.Combine(String appPath, String basepath, String
relative)
at System.Web.UI.Control.ResolveClientUrl(String relativeUrl)
at System.Web.UI.WebControls.Image.AddAttributesToRen der(HtmlTextWriter
writer)
at System.Web.UI.WebControls.WebControl.RenderBeginTa g(HtmlTextWriter
writer)
at System.Web.UI.WebControls.WebControl.Render(HtmlTe xtWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTe xtWriter writer,
ControlAdapter adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter
adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
at System.Web.UI.WebControls.HyperLink.RenderContents (HtmlTextWriter writer)
at System.Web.UI.WebControls.WebControl.Render(HtmlTe xtWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTe xtWriter writer,
ControlAdapter adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter
adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
at System.Web.UI.Control.RenderChildrenInternal(HtmlT extWriter writer,
ICollection children)
at System.Web.UI.Control.RenderChildren(HtmlTextWrite r writer)
at System.Web.UI.WebControls.TableCell.RenderContents (HtmlTextWriter writer)
at System.Web.UI.WebControls.WebControl.Render(HtmlTe xtWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTe xtWriter writer,
ControlAdapter adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter
adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
at System.Web.UI.Control.RenderChildrenInternal(HtmlT extWriter writer,
ICollection children)
at System.Web.UI.Control.RenderChildren(HtmlTextWrite r writer)
at System.Web.UI.WebControls.WebControl.RenderContent s(HtmlTextWriter
writer)
at System.Web.UI.WebControls.WebControl.Render(HtmlTe xtWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTe xtWriter writer,
ControlAdapter adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter
adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
at System.Web.UI.WebControls.Table.RenderContents(Htm lTextWriter writer)
at System.Web.UI.WebControls.WebControl.Render(HtmlTe xtWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTe xtWriter writer,
ControlAdapter adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter
adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
at System.Web.UI.Control.RenderChildrenInternal(HtmlT extWriter writer,
ICollection children)
at System.Web.UI.Control.RenderChildren(HtmlTextWrite r writer)
at System.Web.UI.WebControls.WebControl.RenderContent s(HtmlTextWriter
writer)
at System.Web.UI.WebControls.BaseDataList.Render(Html TextWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTe xtWriter writer,
ControlAdapter adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter
adapter)
at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
at System.Web.UI.Control.RenderChildrenInternal(HtmlT extWriter writer,
ICollection children)
at System.Web.UI.Control.RenderChildren(HtmlTextWrite r writer)
at System.Web.UI.Control.Render(HtmlTextWriter writer)

This seems to be generated by the skinId, when the hyperlink try to add its
image in the anchor.
I still dont understand why, and why when adding a div around this, all
seems to work....I have checked, there are no reasons for 'a leading .. to
exit above the top directory' in our skinid and in the current server
executing path ?????,

And I don't understand why the exception is not sent to our Application
Error Handler in global.asax, under normal conditions all our exceptions
catching are traced and rethrow to reach global handler.
And I get no trace ???? the Page.render continue its work, missing some
parts of the rendering (no closing </a>).
Is it possible that .net catches something from the sending of Render
without any warning or trace?

CS

"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: ek**************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

I think we can use some mock data to test the skin behavior.

Sorry I cannot tell exactly what might be wrong at current moment without
full code listing.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Jun 20 '07 #13
WT
Walter, it looks like a MS bug.

In fact when we set a SkinID in an hyperlink used in a Datalist, it appeard
that the path for the imageurl, comming from the skin, is set with a path
like ~/App_Themes/MyTheme/MyImage.gif.

We get this using the ItemDataBound event and tracing the imageurl for the
Hyperlink.

Until now this is not a problem, but it appears that during Render, the
private methods
System.Web.UI.Control.ResolveClientUrl(String relativeUrl)
expecting a relative url, transforms this in
.../../App_Themes/MyTheme/MyImage.gif
- this could be normal as the usercontrol being rendered is in an url 2
levels under the web site path-

then System.Web.Util.UrlPath.ReduceVirtualPath(String path) discovers that
we are trying to get beyond the site root url and throw an exception and the
code for hyperlink is not rendered.

So we transformed the imageurl set from the skin, removed the ~ and Render
runs normally.

Should we have to do this everytime, what could be the reason for this ?

ReduceVirtualPath seeems to be failing in some special conditions ???

Thanks for help.

CS



"Walter Wang [MSFT]" <wa****@online.microsoft.coma écrit dans le message
de news: ek**************@TK2MSFTNGHUB02.phx.gbl...
Hi CS,

I think we can use some mock data to test the skin behavior.

Sorry I cannot tell exactly what might be wrong at current moment without
full code listing.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Jun 20 '07 #14
Hi CS,

Things are a little complicated, could you please put up a reproducible
project and send it to me? My email address is in my signature below. Thank
you very much for your effort.

Regards,
Walter Wang (wa****@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Jun 21 '07 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jim | last post by:
My subject probably isn't very descriptive of what I want to do, so let me explain: I wna tto have a website that holds a number of products, grouped by category. On the administration page of...
4
by: | last post by:
I have a datagrid with a template column that has a hyperlink and a label. The hyperlink text is bound to Title from my dataset and the label text is bound to Author in the dataset. The grid...
2
by: Nicole | last post by:
I am creating template columns programmatically. I have read the msdn article on this and I'm so close. Article:...
2
by: | last post by:
Hello All, I am having a lot of difficulty trying to bind a templated column, that is programmatically created for a datagrid, to a datasource column. I have a datasource containing 2 columns,...
1
by: André Almeida Maldonado | last post by:
Hy Guys.. I have a datagrid with template columns. The datagrid have a datatable datasource. But when I try to bind data, I receive this error: DataBinder.Eval:...
10
by: DBLWizard | last post by:
Howdy, I need to compine two columns (LastName, Firstname) with the comma. The only problem I have is the Firstname could be blank and in that case I don't want the "," appended to the last...
2
by: Shafia | last post by:
Hi, My GridView has templated controls in it and I'm binding to an ObjectDataSource. The problem is it refused to bind to my grid column "ColumnName" which is also an UpdateCommand Parameter for...
2
by: mikepolitowski | last post by:
Hi folks, I am have been trying to solve this problem for quite some time now and would appreciate any advice. I have been trying to call a code-behind function that is defined in my aspx.cs...
1
by: Brett Wesoloski | last post by:
I am new to using template columns. I am just trying to create a data grid with a bound column and another column with a imagebutton in it. What I have always done in the past was to then create...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.