Forum: ASP.NET Dec 30th, 2008 |
| Replies: 151 Views: 185,467 This is an issue with the path. See how it is mapping to an incorrect path. See if you can figure out. |
Forum: ASP.NET Dec 21st, 2008 |
| Replies: 8 Views: 3,530 You need to also try to access the site locally from the Windows 2003 server first using the browse option in IIS for a given site.
Also check the default pages supported by your site on IIS and add... |
Forum: ASP.NET Dec 21st, 2008 |
| Replies: 8 Views: 3,530 Few things to make sure on Windows 2003.
- Check the Application Pool your site is running on. Also check the permission for the Pool.
- Then check the web.config to turn on remote errors.
-... |
Forum: ASP.NET Dec 17th, 2008 |
| Replies: 5 Views: 781 You need to check your records to see the prices are same for all records. |
Forum: ASP.NET Dec 17th, 2008 |
| Replies: 6 Views: 2,153 Put a breakpoint and see where exactly is the error. And also make sure you have the proper code in the Markup page also to the call the Grid Event. |
Forum: ASP.NET Dec 17th, 2008 |
| Replies: 5 Views: 781 Wrap you code between tags to keep the formatting. Post you existing query again. |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 6 Views: 2,153 You can read more ASP.NET articles on coderewind.com
let me know how it goes. |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 4 Views: 3,374 Here is the detailed tutorial with sample code. Hope this will help.
http://www.coderewind.com/Index.php?categ&view_article=115
Mark this post as resolved if this helps. |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 3 Views: 903 Placing all the DB code inside the Using keyword takes care of all the resource issues automatically. |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 4 Views: 3,374 I will post a detailed aticle in C# soon. |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 3 Views: 1,146 try either or the codes below:
dropdown1.Items.FindByValue("0").Attributes.Add("style", "font-weight:bolder")
or
dropdown1.Items.FindByValue("0").Attributes.Add("style", "font-bold:true")
... |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 5 Views: 1,378 try cmd.CommandType = CommandType.Text before
cmd.CommandText = "INSERT ... |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 6 Views: 2,153 Here is the code sample with a GridView named "gv_Lookup"
//Place this on the aspx markup page for the GridView control to show the delete checkboxes on each row and the delete button in the... |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 3 Views: 844 Did you try http://NODE5/<my virtual dir>/. on the same IIS server?
You need to first make sure the server itself recognizes the host name. |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 3 Views: 863 Here is $.01 comment on this. Both are equally powerful technologies. They both use frameworks offering similar functionality. Java was little behind on the GUI part but now it has caught up. I must... |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 1 Views: 1,148 Can you explain with your current code? |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 151 Views: 185,467 Please refer my article posted on the same issue long back.
http://www.coderewind.com/?categ&view_article=34 |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 8 Views: 3,530 Lets do some linear and logical troubelshooting for this issue.
First you need to make sure what is the exact error message from your ASP.NET site. To do this place add this tag under system.web.... |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 1 Views: 2,379 You can use the GridView which is the most recent version of the DataGrid control in ASP.NET.
You can make use of the GridView events RowCommand, RowDataBound, RowDeleting, RowEditing,... |
Forum: ASP.NET Dec 16th, 2008 |
| Replies: 5 Views: 781 It is so obvious that you dont have any where condition in the update statement.
uptext = "update cooldrinks set drinkname = @drinkname ,color = @color, price = @price" --> You need to add the... |
Forum: ASP.NET Nov 11th, 2008 |
| Replies: 2 Views: 1,077 Do you only want to delete the row from the GridView and not from the DataBase? |
Forum: ASP.NET Jun 24th, 2008 |
| Replies: 5 Views: 4,246 First add this code on the .aspx file to add checkboxes to GridView
<asp:TemplateField HeaderText="Delete" ShowHeader="False">
<ItemTemplate>
<asp:CheckBox ID="chkDeleteRows" runat="server"/>... |
Forum: ASP.NET Jun 24th, 2008 |
| Replies: 151 Views: 185,467 Whose reply are you referring here? If it is mine, then try to place a breakpoint and see if its coming to the function call and see what happens. |
Forum: ASP.NET Jun 12th, 2008 |
| Replies: 0 Views: 821 Hi,
Is there any Web Based Open Source .NET Source Control Tool which can be hosted on an IIS server? |
Forum: ASP.NET May 19th, 2008 |
| Replies: 2 Views: 2,167 I dont want to put any DataSource object in Design Time. DO you have any code sample to handle everything dynamically using Business Layer calls? |
Forum: ASP.NET May 19th, 2008 |
| Replies: 2 Views: 2,167 Hi,
Can anyone help me with Inline Editing one row at a time Also inserting a row.
Iam binding the gridview dynamically using C# codebehind with DataSet. I did not find any good posts on this.
... |
Forum: ASP.NET Mar 11th, 2008 |
| Replies: 11 Views: 7,788 You can read and download a set of real life .NET questions here (http://www.coderewind.com/?categ&view_article=98) |
Forum: ASP.NET Mar 11th, 2008 |
| Replies: 4 Views: 1,203 What do you mean by Session State? The default session has a timeout of 20 mins. Now if you are referring to View State i can probably give you more details. |
Forum: ASP.NET Mar 11th, 2008 |
| Replies: 3 Views: 778 You can read a VB.NET example here.. (http://www.coderewind.com/?categ&view_article=34)
More ASP.NET Interview Questions (http://www.coderewind.com/?categ&view_article=98) |
Forum: ASP.NET Feb 14th, 2008 |
| Replies: 2 Views: 672 Thanks for the reply.
I have no backup software on this server. It does not have too much traffic but yes atleast 500 hits a day. This issue is totally irregular so I cannot rely on the event logs... |
Forum: ASP.NET Feb 14th, 2008 |
| Replies: 2 Views: 672 Iam facing a wierd issue with ASP.NET and MySQL. My ASP.NET site hangs pediodically. After it hangs none of the pages open. But other sites on the same Server still works.
The only way to bring... |
Forum: ASP.NET Jan 23rd, 2008 |
| Replies: 151 Views: 185,467 UserName.text is the actual username text control which contains the original value typed by the user. Now if you want to track who is who. You can either use Cookies or Sessions.
Cookies and... |
Forum: ASP.NET Nov 13th, 2007 |
| Replies: 3 Views: 709 Just an advice, if you frequently want to do cosmetic changes on your website, its good to have a CMS based site so that you can control the entire site from Admin Panel. SO you dont have to worry... |
Forum: ASP.NET Sep 21st, 2007 |
| Replies: 3 Views: 3,658 How can you control the click even through TextChanged Event. |
Forum: ASP.NET Sep 20th, 2007 |
| Replies: 3 Views: 3,658 Hi,
I have an ASP.NET web app and Iam trying to show my clients a message to save data before saving when they click on the submit button which is working fine. But the problem is I only want to... |
Forum: ASP.NET Sep 20th, 2007 |
| Replies: 4 Views: 3,905 There are 2 ways to create a windows service.
Method 1: You can create a simple .NET application and write you login inside that app. And then use the srvany utilituyand convert your .NET exe into a... |
Forum: ASP.NET Sep 20th, 2007 |
| Replies: 13 Views: 1,461 There is not diff. in C# & VB.NET in context to what functionalty can be achieved. Both can perform the same. But it is upto you as per your comfort level which one to pick. Mostly a Java or C++... |
Forum: ASP.NET Sep 18th, 2007 |
| Replies: 13 Views: 1,461 Yes that's actually the right approach as C# is the language and ASP.NET is a technology.
So go with C# first and then implement in ASP.NET. |
Forum: ASP.NET Sep 18th, 2007 |
| Replies: 13 Views: 1,461 What would you prefer as the codebehind language? VB or C#? |
Forum: ASP.NET Sep 18th, 2007 |
| Replies: 13 Views: 1,461 Well If you plan to use AJAX in ASP.NET then yes you have to know ASP.NET. Iam infact working on a tutorial on ASP.NET and VB.NET which will be available on my site soon. |