Search Results

Showing results 1 to 40 of 612
Search took 0.04 seconds.
Search: Posts Made By: binoj_daniel
Forum: Project Partners Wanted Jan 22nd, 2009
Replies: 11
Views: 1,493
Posted By binoj_daniel
Give me your contact details. What is your company name? Send me more information about your application and the features you would like us to build.
email: bdaniel@it2max.com
Forum: Visual Basic 4 / 5 / 6 Jan 20th, 2009
Replies: 3
Views: 492
Posted By binoj_daniel
What is the error? Can you paste it here?
Forum: ASP.NET Dec 30th, 2008
Replies: 151
Views: 182,897
Posted By binoj_daniel
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,487
Posted By binoj_daniel
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,487
Posted By binoj_daniel
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: 763
Posted By binoj_daniel
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,032
Posted By binoj_daniel
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: 763
Posted By binoj_daniel
Wrap you code between tags to keep the formatting. Post you existing query again.
Forum: ASP.NET Dec 16th, 2008
Replies: 6
Views: 2,032
Posted By binoj_daniel
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,302
Posted By binoj_daniel
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: 881
Posted By binoj_daniel
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,302
Posted By binoj_daniel
I will post a detailed aticle in C# soon.
Forum: ASP.NET Dec 16th, 2008
Replies: 3
Views: 1,089
Posted By binoj_daniel
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,295
Posted By binoj_daniel
try cmd.CommandType = CommandType.Text before

cmd.CommandText = "INSERT ...
Forum: ASP.NET Dec 16th, 2008
Replies: 6
Views: 2,032
Posted By binoj_daniel
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: 808
Posted By binoj_daniel
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: 819
Posted By binoj_daniel
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,098
Posted By binoj_daniel
Can you explain with your current code?
Forum: ASP.NET Dec 16th, 2008
Replies: 151
Views: 182,897
Posted By binoj_daniel
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,487
Posted By binoj_daniel
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,241
Posted By binoj_daniel
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: 763
Posted By binoj_daniel
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: Project Partners Wanted Dec 16th, 2008
Replies: 6
Views: 1,722
Posted By binoj_daniel
Hi,

I can develop this custom app for you, I have developed many custom apps for small companies and hospitals in and around NJ, NY, PA & MD. You can reach me at 215-801-6036 or email me at...
Forum: Project Partners Wanted Dec 16th, 2008
Replies: 4
Views: 926
Posted By binoj_daniel
We can provide you with the custom script you need, we have good experience in creating custom php scripts, Web data extractors etc..

please send details to bdaniel@it2max.com
We are a...
Forum: Project Partners Wanted Dec 16th, 2008
Replies: 11
Views: 1,493
Posted By binoj_daniel
We can all .NET & PHP related project. We have good experience in building scalable enterprise apps for reasonable price focusing on application quality. Please visit relpy back with more details at ...
Forum: Websites for Sale Dec 16th, 2008
Replies: 1
Views: 828
Posted By binoj_daniel
Is it still for sale? If yes can you show me the working site and send me more details?
Forum: ASP.NET Nov 11th, 2008
Replies: 2
Views: 1,014
Posted By binoj_daniel
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,155
Posted By binoj_daniel
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: 182,897
Posted By binoj_daniel
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: Windows NT / 2000 / XP Jun 24th, 2008
Replies: 10
Views: 987
Posted By binoj_daniel
Here are some other suggestions you can try.
- If it stops by giving a blue screen then there is high posibility that some H/W is causing problem.
- See if you can remove any additional H/W like a...
Forum: ASP.NET Jun 12th, 2008
Replies: 0
Views: 771
Posted By binoj_daniel
Hi,

Is there any Web Based Open Source .NET Source Control Tool which can be hosted on an IIS server?
Forum: VB.NET Jun 2nd, 2008
Replies: 1
Views: 499
Posted By binoj_daniel
To do this, you can create a flag key in registry. It will store bit value. You can read from the registry and flip the bit value.

Simple method will be to create a check sum funtion and pass a...
Forum: VB.NET Jun 2nd, 2008
Replies: 11
Views: 1,121
Posted By binoj_daniel
I went through what others have suggested, I think dexblack is pretty close.

First of all why would you distribute your application in the form of source code? Anyone can reuse it in that case....
Forum: VB.NET Jun 2nd, 2008
Replies: 3
Views: 1,329
Posted By binoj_daniel
You can do something like this by using an API call.

Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal...
Forum: VB.NET Jun 2nd, 2008
Replies: 2
Views: 1,878
Posted By binoj_daniel
On which line are you getting error? Can you paste the error?
Forum: Windows NT / 2000 / XP Jun 2nd, 2008
Replies: 10
Views: 987
Posted By binoj_daniel
How many partitions do you have? What kind of Partition do you have (NTFS or FAT32)?

Try to make 2 partions, before installing try do a full format.
Forum: Windows NT / 2000 / XP Jun 2nd, 2008
Replies: 4
Views: 1,654
Posted By binoj_daniel
Use Norton Ghost to make a CD with your needs. It will create a Recovery CD which can restore your machine to the date the restore was made. It will install everything including all applications...
Forum: ASP.NET May 19th, 2008
Replies: 2
Views: 2,012
Posted By binoj_daniel
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,012
Posted By binoj_daniel
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: Visual Basic 4 / 5 / 6 Apr 25th, 2008
Replies: 8
Views: 4,690
Posted By binoj_daniel
Hi,
Nothing offence but if you search with this keyword on daniweb "sql connection" you will see lot of good results. Also I would suggest you to read some SQL Books to start with.
Showing results 1 to 40 of 612

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC