| Thread | Last Post | Replies |
|
| Dumb JavaScript question - how to use \\ not as a comment? | 11 Feb 2008 03:04 GMT | 2 |
I am trying to learn how to use regular expression objects in JavaScript. I am missing some very basic JavaScript concept. While playing around with regular expressions from a 3rd party regex creator, I tried pasting a regex expression that contained \\ into a
|
| Since when is a Refresh a PostBack? | 11 Feb 2008 02:51 GMT | 7 |
I'm getting into the habit of checking IsPostBack in my Form_Load handler and not updating the page if it is a postback. However, I notice that if I hit my browser's refresh button, the page refreshes without any data.
|
| DefaultFocus Does not Work in IE? | 11 Feb 2008 02:28 GMT | 3 |
I've just upgraded a project to ASP.NET 3.5 and VS2008 from .NET 1.1. All is going well. I noticed a great new attribute on the <form> tag called DefaultFocus. I gave it a try. When I load up my page in IE, nothing is different. However, in FireFox, my txtUsername is given
|
| button click problem | 10 Feb 2008 19:26 GMT | 6 |
I have a code like this: protected void Page_Load(object sender, EventArgs e) { // CODE1
|
| Permission Issues? | 10 Feb 2008 19:11 GMT | 3 |
To make it simple, I'm doing this Dim Location As String = AppDomain.CurrentDomain.BaseDirectory & "reports\baseReport1.xls" System.IO.File.Copy(AppDomain.CurrentDomain.BaseDirectory &
|
| Huge Volume Of data | 10 Feb 2008 18:18 GMT | 2 |
This may sound like a very common question but I am developing an application which is just used for reporting purpose... The application has two things - grid and an option to export the data to excel.
|
| Makieng my variable Global | 10 Feb 2008 18:09 GMT | 3 |
How can I make my variable as global or variable that declared in all my entire project. For Example in Desktop application you can add your variable to the Module to make declared for the entire project.
|
| writing parameter dynamically | 10 Feb 2008 17:59 GMT | 5 |
How can i write dynamic parameter for a java script function in<asp:image> tag? for static usage like ; onmouseover="ChangePicture('images/blue.gif')"
|
| Accessing cookies from DLL | 10 Feb 2008 15:57 GMT | 3 |
I am not able to read or write cookies from DLLs both locally and on Godaddy's web hosting site. I have ASP.NET 2 set up in both locations. There must be a trick. My code looks as follows: return (HttpContext.Current.Request.Cookies[m_strCookieName] != null);
|
| ASP.NET Usind Access DB | 10 Feb 2008 15:53 GMT | 1 |
I am converting a site from ASP to ASP.NET. In the ASP site I used an Access DB which used some user defined functions written in VBA modules. The ASP site used queries that contained these user defined functions without issue.
|
| ASP.NET 2.0 GridView Item Selection | 10 Feb 2008 13:54 GMT | 1 |
I am using GridView in my web page.In that form after clicking Add button I am again binding GridView with newly added record. The problem I am facing is how to highlight newly inserted data in GridView.
|
| ASP.NET 2.0 DataGrid Radio Button Single Selection | 10 Feb 2008 13:43 GMT | 1 |
I am using datagrid in my PopUp window page.It has radio button for selecting row. I want to allow single selection at a time.I am able to solve problem using belowcode.
|
| Copy Credentials for a worker thread | 10 Feb 2008 13:12 GMT | 2 |
In my web app I am creating threads to do work. I want to give the same rights as my main asp.net thread. The default is to give lesser rights so when I access the db I get a log on failure with a trusted connection or a user name/password.
|
| Scrolling GridView with fixed Header | 10 Feb 2008 12:37 GMT | 3 |
Does anyone of you know any Open Source GridView Extension that has vertical Scrollbar and fixed Header? Tried to Google but didn't find any proper (because of Css). It should work in IE, Firefox and Opera.
|
| CurentCulture set to en-GB but dates are appearing in US format st | 10 Feb 2008 11:25 GMT | 2 |
I am setting the current culture on the current thread in my global.asax.cs application_start() event as follows: System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-GB");
|