Forum: ASP.NET 24 Days Ago |
| Replies: 1 Views: 419 I have found the workaround for this. More details from here (http://forums.asp.net/p/1010076/1661205.aspx).
protected void GridViewRowEventHandler(Object sender, GridViewRowEventArgs e)
{
... |
Forum: ASP.NET 24 Days Ago |
| Replies: 1 Views: 419 Hi,
I'm trying to access the RangeValidator control at my code-behind file. I keep on getting "Object reference not set to an instance of an object." exception. Can someone enlighten me?
ASPX:... |
Forum: ASP.NET 26 Days Ago |
| Replies: 2 Views: 268 Hi,
I'm actually trying to compute the total for my individual gridview items but I am reaching the dead end at the moment.
I had an idea that probably I can specify another datasource for my... |
Forum: ASP.NET 31 Days Ago |
| Replies: 2 Views: 371 They are created as bound fields in the code-behind code which has no data field. that's why they are currently blank. |
Forum: ASP.NET 32 Days Ago |
| Replies: 2 Views: 371 Hi, attached in the attachment below has a screenshot of what I am trying to accomplish... I have hurdle marks for individual students and i am trying to compute the total of those marks.
How can... |
Forum: ASP.NET 32 Days Ago |
| Replies: 1 Views: 265 I'm currently populating my GridView using code-behind codes and it looks like this:-
BoundField boundField = new BoundField();
boundField.DataField = "student_name";
boundField.HeaderText =... |
Forum: ASP.NET Jan 19th, 2009 |
| Replies: 2 Views: 1,876 Hi all,
I have a question. How do I render a string which has some html coding in it and display it as HTML?
For instance, my string is like this :
Dim htmlString As String = "<h3>Hello... |
Forum: ASP.NET Jan 2nd, 2009 |
| Replies: 0 Views: 396 Hi,
I have a problem that I want to solve and I was told that I could use ASP.NET caching to solve it. Below is my scenario:
Users are required to fill up a certain type of questionnaire which... |