No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
http://sqltutorials.blogspot.com/
- Interests
- http://sqltutorials.blogspot.com/
- PC Specs
- http://sqltutorials.blogspot.com/
18 Posted Topics
Re: 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. | |
Re: 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 that create a new folder when the system didnt found ur folder. … | |
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 when it reach the size (2.5GB). i will always get error message : … | |
Re: 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. | |
Re: 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. [quote=liquisite;373442]I found a few posts on this forum related to this, but I was not able to find anything directly related to my issue. … | |
Re: try reregistering ur asp net framewok using aspnet_regiis in command promt | |
Re: 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 day on the end date. this is another way to insert … | |
Re: you try to understand below code, it maybe can help u. <html> <head> [COLOR=green]<%[/COLOR] [COLOR=green]sub vbproc(num1,num2)[/COLOR] [COLOR=green]Response.Write(num1*num2)[/COLOR] [COLOR=green]end sub[/COLOR] [COLOR=green]%>[/COLOR] [COLOR=green]<script language="javascript" runat="server">[/COLOR] [COLOR=green]function jsproc(num1,num2)[/COLOR] [COLOR=green]{[/COLOR] [COLOR=green]Response.Write(num1*num2)[/COLOR] [COLOR=green]}[/COLOR] [COLOR=green]</script>[/COLOR] </head> <body> <p>Result (call vbscript function): [COLOR=green]<%call vbproc(3,4)%>[/COLOR]</p> <p>Result (call javscript function): [COLOR=green]<%call jsproc(3,4)%>[/COLOR]</p> </body> </html> | |
Re: 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" [COLOR=red]If request.form("login")="kal" and [/COLOR] [COLOR=red]request.form("password")="walthers" then[/COLOR] [COLOR=red][/COLOR] i didnt check ur asp code, u try ist... but i notice something wrong in ur asp code. anywhere … | |
Re: [quote=mike.mclennan;371031]I am working with ASP.NET, C# and SQL Server. What I am trying to do seems simple enough, but is causing me alot of problems. I am trying to set up my DataGrid so that is updates only when i press the Update button. It is pulling information from 5 … | |
Re: 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. [COLOR=red]MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME")) [/COLOR] Second, you didnt put any variable to [COLOR=red]Request.QueryString. [/COLOR] [COLOR=red]If (Request.QueryString <> "") Then [/COLOR]is not produce any value in if statement … | |
Re: This web hosting is not bad and services is good. [URL]http://www.superbhosting.net/[/URL] | |
Re: please check your page_load function and check your IsPostBack code. it should have some problem at there. | |
Re: 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 you connect to that database. Hope it can help u... | |
Re: 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 it can help you |
The End.