Forum: MS SQL Nov 13th, 2007 |
| Replies: 0 Views: 1,692 hi,
i am using vs.net 2003 and mssql 2000. currently my db size is 2.5gb including DB transaction Log File. For (.BAK extension) is 1.55 gb.
May i know how to expand or improve my DB because... |
Forum: ASP.NET May 28th, 2007 |
| Replies: 1 Views: 2,361 try reregistering ur asp net framewok
using aspnet_regiis in command promt |
Forum: ASP.NET May 28th, 2007 |
| Replies: 2 Views: 1,108 Please Copy all your PAge_Load code to here.
it most possible is when you submit, it refresh the page before u redirect your user to cl_account.aspx. |
Forum: ASP.NET May 25th, 2007 |
| Replies: 1 Views: 1,293 you already know about the end date will be 7 day after startdate. you can call a store procedure when you need to insert the data to database, in the store procedure you can make it automatic add 7... |
Forum: ASP.NET May 25th, 2007 |
| Replies: 1 Views: 1,259 may i know how to change my display name? |
Forum: ASP May 24th, 2007 |
| Replies: 1 Views: 1,673 you try to understand below code, it maybe can help u.
<html>
<head>
<%
sub vbproc(num1,num2)
Response.Write(num1*num2)
end sub
%>
<script language="javascript" runat="server">
function... |
Forum: ASP.NET May 24th, 2007 |
| Replies: 6 Views: 1,533 normally is localhost or your pc name. |
Forum: ASP.NET May 24th, 2007 |
| Replies: 1 Views: 2,760 you get the error probably, inside your folder dun have "sub" folder name. you need to check it, if didnt found the folder, u need create a new folder.
based on the code, i didnt found any coding... |
Forum: ASP May 23rd, 2007 |
| Replies: 1 Views: 2,426 First, u didnt add in a form. you cant submit without a form.
Second, after u add in form, u need to add action="URL?login=kal&password=walthers"
If request.form("login")="kal" and ... |
Forum: ASP.NET May 23rd, 2007 |
| Replies: 1 Views: 1,234 First, when u click submit button, ur MM_editAction is going back to the same pages and it didnt provide parameter at the end URL.
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
... |
Forum: ASP.NET May 23rd, 2007 |
| Replies: 10 Views: 17,285 out there got alot PDF convertion DLL, if u need for non bunisess use.
Or u can export your file to excel format using .net and then using microsoft 2007 to convert it to PDF. |
Forum: ASP.NET May 23rd, 2007 |
| Replies: 2 Views: 775 |
Forum: ASP.NET May 23rd, 2007 |
| Replies: 2 Views: 1,967 If you dun wan to let it postback, why not u dun using ASPnet AJAX?
it quite Simple to use that.
but requirement is framework 2.0 and above |
Forum: ASP.NET May 21st, 2007 |
| Replies: 5 Views: 6,076 welcome, i still new in helping people solve problem. anywhere, everything need to try. haha |
Forum: ASP.NET May 21st, 2007 |
| Replies: 5 Views: 6,076 yup, all your code is correct, except the If Not Page.IsPostBack Then.
you should put If Page.IsPostBack Then
Hope it can help you.:) |
Forum: ASP.NET May 20th, 2007 |
| Replies: 1 Views: 1,140 Can you explain more deeply?
if u just deploy your web site in another pc on a network, u just need to put your database server ip or database server name to the connection string. It will let... |
Forum: ASP.NET May 20th, 2007 |
| Replies: 1 Views: 1,753 u just using sql to join all the column that u want to include and bind it to dropdownlist.
Example SQL Query, select salutation +'|' + firstname + '|' + lastname , age from guesttable.
Hope... |
Forum: ASP.NET May 20th, 2007 |
| Replies: 4 Views: 2,103 put ur dropdownlist in user control. Then u just need to include the user control on any place or any page when u need to use the dropdownlist. |
Forum: ASP.NET May 20th, 2007 |
| Replies: 2 Views: 875 This web hosting is not bad and services is good.
http://www.superbhosting.net/ |
Forum: ASP.NET May 20th, 2007 |
| Replies: 5 Views: 6,076 please check your page_load function and check your IsPostBack code.
it should have some problem at there. |