format the html text puting a div with word-wrap:break-all style attribute.
brunoseixas
Posts
-
wordwrap in asp:Literal -
store procedure or sql commanduse store procedures in database because if you have any problem, you only needs change the proc to resolve
-
LINQ to SQL - Design PatternHi fellas, I wanna know what is the best pattern to my web application to use LINQ to SQL in project.
-
problem in sitewhat is 'Menus'[2]? if Menus are a database schema and you use this schema in procedures, functions or tables problably this schema doesn't exist in production database. create them and resolve.
-
Case for .net remotingisso é bem simples, basta declarar um vetor com ponteiro multiplo e chamar o método Add() dentro do seu ânus
-
Passing Linq query results to a different functionconvert the linq result to list
var results = (from t in query
where t.ProjectID == new Guid(this.Session["ProjectID"].ToString())
orderby t.Number ascending
select new
{
ID = t.ID,
Tag = t.Number,
Description = t.Description,
SubSystems = GeneralHelper.TagSubSystems(t),
Module = t.Area.Module.Name,
Discipline = t.Discipline.Name,
ITRs = GeneralHelper.TagITRsHTML(t)
}).ToList(); -
Linq-to-sql Asp.Neto grande problema é q vc tem q deixar de ser burro, mundiça
-
How do I include textbox data in SQL query?where CODE like '%' + textbox.text + '%' ???
-
Screen resolution in web siteoh right!! :-\ thanks dude
-
Screen resolution in web siteHi guys. I wanna know if I add a windows.forms reference in my web project and use
System.Windows.Forms.SystemInformation.PrimaryMonitorSize
its a good thing. or javascript window.screen.width its more recommended to web projects?
-
iframe in MasterPageHi, I wanna know if is possible to put a iframe in masterpage file and the contentplaceholder inside the iframe. Thanks.
-
validationdocument.getElementById('YOUR CALENDAR CLIENT ID').visible = false;
-
Validation of viewstate MAC failedI dont think so. but u can try catch this error in Application_Error method in global.asax file
-
? : Operator? operator its like a IF-result statement. look:
int x = 0;
int y = 1;if(x > y) ? y++ : y--;
If x>y = true, y++.
If x>y = false, y--; -
Problem with Xml and XsdI don't have sure, but if you wanna search something about "ReadXmlSchema" method.. maybe this can help you :|
-
reading weather.com data feedIf the url returns a .xml or .atom you can try read using XmlReader or if you want a full html code, use WebClient.
-
How can you add a click event in the text box, C# , asp.netYOUR_TEXTBOX_ID.Attributes.Add("onclick","Visible(true);"); function Visible(isVisible) { $get('your_dropdown_clientid').visible = isVisible; }
-
ScriptManager.RegisterClientScriptBlock praticesYes, of course. Tell that to the dummies of the commercial area. Haaaa :laugh:
-
ScriptManager.RegisterClientScriptBlock praticesYes, there is a reason. This page uses a free javascript code called niceforms (http://www.emblematiq.com/lab/niceforms/), it has several bugs and needs to be recharged several times. And the problem is that it does not reload correctly if called at events such as onLoad or EndRequest in html (I do not know why). So, I created a static method in BasePage application that contains a method that performs this function across the ScriptManager. The solution I found was this, and I'm just calling it in Page_Load when is postback. Thank you.
-
ScriptManager.RegisterClientScriptBlock praticesHello, I have a Javascript function that needs to be thrown several times in the code-behind(C#) for user navigation. I wanna know if calling the function by the method ScriptManager.RegisterClientScriptBlock is a good practice to resolve this issue. Thanks.