Search Results

Showing results 1 to 32 of 32
Search took 0.01 seconds.
Search: Posts Made By: sierrasoft
Forum: VB.NET Feb 4th, 2009
Replies: 4
Views: 1,900
Posted By sierrasoft
How to move (or Duplicate) a Microsoft SQL Server Database from One Physical Server to another server (like backup) in vb.net 2.0 ?
Forum: VB.NET Feb 3rd, 2009
Replies: 1
Views: 998
Posted By sierrasoft
How to change screen resolution programmatically in vb.net 2.0 ?
Forum: ASP.NET Jan 29th, 2009
Replies: 2
Views: 809
Posted By sierrasoft
how to convert .aspx file (which is developed for mobile application) to .jad file ?
Forum: ASP.NET Jan 16th, 2009
Replies: 0
Views: 417
Posted By sierrasoft
How to add any user to System Admin role Programmatically in ASP.net 2.0 using SQL Server 2000 ?
Forum: ASP.NET Jan 15th, 2009
Replies: 1
Views: 566
Posted By sierrasoft
How to create my own multiple languages translator in ASP.Net 2.0 ?
Forum: VB.NET Jan 13th, 2009
Replies: 1
Views: 751
Posted By sierrasoft
How can create HTML Reports (like Crystal Report) in VB.net 2005 ??
Forum: ASP.NET Jan 13th, 2009
Replies: 0
Views: 738
Posted By sierrasoft
How to Send message from ASP.net 2.0 application to Mobile ?
Forum: ASP.NET Dec 22nd, 2008
Replies: 1
Views: 1,196
Posted By sierrasoft
How to create a permanent cookie?
And I am using Asp.Net 2.0
Forum: ASP.NET Dec 12th, 2008
Replies: 3
Views: 994
Posted By sierrasoft
Yes.
Thanks for reply. I got the solution.
Forum: ASP.NET Dec 11th, 2008
Replies: 3
Views: 994
Posted By sierrasoft
How can I create a multi language, single-file assembly in C#.Net ?
Forum: C# Dec 10th, 2008
Replies: 19
Views: 1,462
Posted By sierrasoft
I want to convert a VB6 Application with many Forms to C# .Net 2.0. How can i do it. Is there a tool available?
Forum: Search Engine Optimization May 7th, 2008
Replies: 4
Views: 989
Posted By sierrasoft
You should submit your site to Directories and your inner pages to Deep Links Directories to get free in-bound links.
Forum: Search Engine Optimization May 7th, 2008
Replies: 9
Views: 1,640
Posted By sierrasoft
Google considers any page with more than 30 links as a link farm. Your main menu on the left already links to the Category and item pages. If you remove the links at the bottom of the pages for the...
Forum: Search Engine Optimization May 7th, 2008
Replies: 9
Views: 1,413
Posted By sierrasoft
Hello, I am an SEO and Internet Marketing Professional besides being an MCP, MCSD, MCAD, MCSD.Net. You can contact me at contact@seo-sem-professionals.com with details of your requirement.
Forum: ASP.NET May 6th, 2008
Replies: 2
Views: 525
Posted By sierrasoft
is the webservice on the same server as the DLL??
Forum: ASP.NET May 6th, 2008
Replies: 1
Views: 1,277
Posted By sierrasoft
you can use this method:
Dim c As Control
For Each c In Page.FindControl("Form1").Controls
If TypeOf c Is RadioButton Then
If CType(c, RadioButton).Checked = True Then
...
Forum: ASP.NET May 6th, 2008
Replies: 2
Views: 1,655
Posted By sierrasoft
set the Autopostback property of the Dropdownlist to "false". In your code it is set to "true" which forces the page to be posted back to the server.

Set the Autopostback to false for all...
Forum: ASP.NET May 6th, 2008
Replies: 2
Views: 508
Posted By sierrasoft
there is an error in your project. To view the error on your local machine from where you are browsing the site--change the web.config settings.

<trace enabled="true"
requestLimit="10"...
Forum: ASP.NET Apr 11th, 2008
Replies: 4
Views: 2,921
Posted By sierrasoft
This error occurs when you don't use the "New" keyword to instantiate the Object. Your code should be either of the following 2:
Dim cart as New Cart
OR
Dim cart as Cart
cart = New Cart
...
Forum: ASP.NET Mar 17th, 2008
Replies: 8
Views: 776
Posted By sierrasoft
See these Articles in MSDN:
role-based security, walkthroughs

Walkthrough: Creating a Web Site with Membership and User Login (Visual Studio)

This should help.
Forum: ASP.NET Mar 15th, 2008
Replies: 9
Views: 3,813
Posted By sierrasoft
Hi,

You can set the GroupName Property of the Radio Button. Check this topic in MSDN--RadioButton.GroupName Property
Forum: VB.NET Nov 30th, 2006
Replies: 2
Views: 1,654
Posted By sierrasoft
Maybe you have used a keyword, space, changed the file name.

Remove the Exception handling block and specify the Error that occurrs to enable me to evaluate the problem.
Forum: VB.NET Nov 30th, 2006
Replies: 3
Views: 1,674
Posted By sierrasoft
1.- is there a way to avoid typing all that each time I want to acces the database (example each button), and if so how.

Ans: Declare the con, comando in the General Declarations section.
Set...
Forum: MySQL Nov 7th, 2006
Replies: 5
Views: 3,663
Posted By sierrasoft
Are you using Access and Jet?
Datepart will not work--it works only with SQL Server
Forum: Database Design Nov 7th, 2006
Replies: 3
Views: 3,948
Posted By sierrasoft
if you have SQL installed --then you also have Books Online installed with SQL which is the help for SQL. If you dont have SQL installed or dont want to--you can still install only BOL. I can send...
Forum: MS SQL Nov 7th, 2006
Replies: 11
Views: 13,736
Posted By sierrasoft
doesn't have a file extension.
Forum: MS SQL Nov 7th, 2006
Replies: 11
Views: 13,736
Posted By sierrasoft
No--the file will be on the drive specified e.g D:/ --with the name that you have specified in the Add dialog box-(Image 3 in the file sent previously)-e.g Backup. Once you have found the file--burn...
Forum: MS SQL Nov 7th, 2006
Replies: 11
Views: 13,736
Posted By sierrasoft
Hi,
Attached is a zip file with the steps--hope it will be helpful
Forum: MySQL Nov 7th, 2006
Replies: 5
Views: 3,663
Posted By sierrasoft
Hi, i think the following should help / give you an idea (eg retrieves names of members whose dob falls in current month--according to system date)

select cname from tablename wherE
datepart...
Forum: ASP.NET Nov 5th, 2006
Replies: 3
Views: 2,543
Posted By sierrasoft
Remove dbconn.Open
Forum: ASP.NET Nov 5th, 2006
Replies: 2
Views: 3,795
Posted By sierrasoft
:?: Hi,
Can anyone guide me (in detail) on how to create / setup a shopping cart and payment gateway for a website. I need to develop this in ASP.Net 1.1.
Forum: Community Introductions Nov 5th, 2006
Replies: 1
Sap
Views: 1,025
Posted By sierrasoft
Sap
Hi All,
I am Sunil from India. I am new to DaniWeb and to Forums so i will need your help. I have been a trainer for Microsoft Certification courses for 6 years. I am an MCP myself and I have now...
Showing results 1 to 32 of 32

 


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

©2003 - 2009 DaniWeb® LLC