Issue : Microsoft SQL Server, Error:233
Solution :
Sometimes when you try to open sql server 2005 or 2008, after entering login details, you will be prompted by this below screen, telling "Microsoft SQL Server, Error:233", then you just get struck and restart you computer or even format the computer or uninstall sql server 2005 or 2008, but not getting any solution?
Please read below to find the solution to this issue.
At this time, what you need to do is, just open your network connection and just disable and enable once,as shown below and your problem solved, thats it. try to login again and you will be succussfully login.
Ya,i know you might be rubbing your head. i have even done that when i came to know the solution to this problem. but anyways finally you got solution to this problem.
Hope this post will help you,
if yes please put comment below of this page,
Rajesh Singh,
Asp.Net Developer
Indianic Infotech Ltd (India)
rajesh@indianic.com
Solved : Microsoft SQL Server, Error:233
Friday, April 23, 2010
Labels:
Sql Server 2005
,
Sql Server 2008
,
Tips and Tricks
unterminated string literal in jQuery
Thursday, April 22, 2010
Issue: unterminated string literal
Solution :
Whenever, you use textarea control in your html code, and you try to fetch the textarea data using jquery, you will encounter this 'unterminated string literal' issue.
Main reason of this issue is, while entering text in textarea control, if you press enter for new line, thus newline character is created, which make this issue to happen.
Please read below to find the solution to this issue,
suppose your html code is
To avoid this issue to happen, what you have to do is, just append '.ToString().Replace(Environment.NewLine, "<br />")' to your control name in code behind, like shown below.
This will replace newline character with HTML tag "<br />",
Hope this post will help you,
if yes please put comment below of this page,
Rajesh Singh,
Asp.Net Developer
Indianic Infotech Ltd (India)
rajesh@indianic.com
Solution :
Whenever, you use textarea control in your html code, and you try to fetch the textarea data using jquery, you will encounter this 'unterminated string literal' issue.
Main reason of this issue is, while entering text in textarea control, if you press enter for new line, thus newline character is created, which make this issue to happen.
Please read below to find the solution to this issue,
suppose your html code is
HTML Code
<tr>
<td align="right">
About RJ :
</td>
<td align="left">
<asp:TextBox ID="txtaboutrj" runat="server" TextMode="MultiLine" Width="300" Height="100"></asp:TextBox>
</td>
</tr>
To avoid this issue to happen, what you have to do is, just append '.ToString().Replace(Environment.NewLine, "<br />")' to your control name in code behind, like shown below.
CodeBehind Code
txtaboutrj.Text.ToString().Replace(Environment.NewLine, "<br />")
This will replace newline character with HTML tag "<br />",
Hope this post will help you,
if yes please put comment below of this page,
Rajesh Singh,
Asp.Net Developer
Indianic Infotech Ltd (India)
rajesh@indianic.com
Labels:
Developer
,
jQuery
,
Tips and Tricks
Subscribe to:
Posts
(
Atom
)