| Thread | Last Post | Replies |
|
| Properties instead of Session Variables | 08 Apr 2008 17:26 GMT | 6 |
I can't use sessions because I am trying to set globally accessible variables from the server - side of an ajax call. I am thinking that a properties class that takes variables in the same call would be a good way to access these
|
| Problem getting return value from a function | 08 Apr 2008 17:12 GMT | 1 |
I have a function that returns wheter a user exists or not in the database the function looks like this: function f_user_exists (p_username IN varchar) return number IS l_return number;
|
| Desgin Web Application | 08 Apr 2008 17:08 GMT | 1 |
I have some questions about the desgining in Asp.net, In windows applications there is some thing called Tab Control tool, what is the equevilant for this in Asp.Net tools? Also is there any tuto. about best practice in desgining the Web
|
| Reading XML File, '<br>' gives 'Element' is not a valid node type | 08 Apr 2008 17:07 GMT | 6 |
I'm returning a string from an xml file and trying to do something like the following. <Getter> return HtmlEncode(s_tring.Value.Replace("\n","<br>"));
|
| determining max pool size | 08 Apr 2008 17:02 GMT | 4 |
i've got an app that runs something like 4000 updates when certain pages are updated. it's taking on average 20 seconds for these pages to execute the update command (15 seconds if all i do is open and close the connection without even executing the sql statement). the
|
| How to assign Text and 'hidden' record ID to a checkbox control? | 08 Apr 2008 17:00 GMT | 1 |
I'd like to list multiple records from a database as checkboxes. I'd use record's "Name" column for checkbox Text. Ideally I'd like to assign a 'hidden' record's ID to checkbox so I don't need to go back to the database to query for the ID when checkbox is clicked on.
|
| nettiers and gridview | 08 Apr 2008 16:41 GMT | 1 |
hi, i have already binded a gridview and the data. in my aspx i have something like that: <asp:TemplateField><HeaderTemplate>Select</HeaderTemplate> <ItemTemplate>
|
| Button Click Event fired on second press? | 08 Apr 2008 16:38 GMT | 1 |
I have a Default.aspx page with several controls in a Master Page. When pressing on a Button control Page_Load event is fired on the Default.aspx page and after that the Page_Load event on the Master Page is fired but it does not go to the Button event in the first button press ...
|
| conditional grid formatting based on non-visible column | 08 Apr 2008 16:28 GMT | 5 |
I have a gridview (asp.net 2.0) where I'm trying to format rows based on a NON VISIBLE column. It doesn't seem to work. When column 0 below is visible, the row is formatted as expected but when it's not, it doesn't do anything. How can I do this so that the formatting is based on ...
|
| How To Stop ASP.NET 1.1 Session Being Shared Across Tabs? | 08 Apr 2008 16:18 GMT | 1 |
Hello, I have an ASP.NET 1.1 application that experiences difficulties if opened in more than one tab of a multitabbed browser. I believe this is because the ASP.NET Session cookie is shared across the tabs.
|
| Q: Login Control is behaving strange when site on prod server. | 08 Apr 2008 16:16 GMT | 2 |
I published my web application today on a 2003 server with IIS 6 and Net Frmwk 2 I have a root containing Default.aspx
|
| TableAdapter returns null for stored proc returning a single value | 08 Apr 2008 16:10 GMT | 3 |
I have a stored procedure that returns a single value. Example: [...] SELECT @RowCount = COUNT(*) FROM t WHERE [...] RETURN @RowCount
|
| browser back and events | 08 Apr 2008 15:59 GMT | 1 |
I noticed that when I force a browser back and the resulting page contains a querystring, it fires the Page_Load event. But if the resulting page doesn't contain a querystring, no Page_Load fires. Is this as expected? I use the following code to create the brower back:
|
| Posted Form Items not in Request | 08 Apr 2008 15:20 GMT | 3 |
I have a pure HTML form that is submitting data back to an .ASPX form. However, when I try to read the field values from the Request object, the values are not there. The Form has id, method and action set. The fields have ids, but when I do
|
| ImageButton | 08 Apr 2008 15:12 GMT | 2 |
hi, is it possible to add some associated text to an image button? something like an image button and besides the text "accept" and both will be handled by the imagebutton_click event. thank you!
|