C# - How To Write A Pseudo Code
Oct 14, 2010Using VB.net, C# and SQL ServerI want to write a pseudo for my application.pseudo code is like coding or flow chart...?Can any one provide a sample pseudo code for any type of application.
View 4 RepliesUsing VB.net, C# and SQL ServerI want to write a pseudo for my application.pseudo code is like coding or flow chart...?Can any one provide a sample pseudo code for any type of application.
View 4 Repliesi want to nkow ik i can write a html code in the code behind if yes show me how?
View 3 Replieshow can I create stored procedure and write my select statement in it, I know how to create dataset then put type stored procedure and assign it to the sp ... what I want is writing my sp... how can I make it ?
check the following code, this is what I want to write put I don't know where or how !
CREATE STORED PROCEDURE SP_CATEGORY
@CATEGORY VARCHAR(30)
AS
BEGIN
SELECT LATIN_NAME, ENGLISH_NAME, ARABIC_NAME, CATEGORY
FROM FLORA, CATEGORY_LIST
WHERE FLORA.CATEGORY=CATEGORY_LIST.CATEGORY_NAME AND CATEGORY_LIST.CATEGORY_NAME IN (SELECT * FROM SPLITLIST(@CATEGORY, ','))
END
where can I write this code ?!
how to write the code in vb . to check the user is valid or not from data base table and get login into the form ...
View 2 RepliesI have a code which I repeat over and over so I am thinking to write subroutine. Not sure if there are functions in C#. Could you advise how to pass arguments to it. An example of add two numbers would be great.
View 1 Replieshow can I write JavaScript code in asp.net in code behind using C#.
For example, I have click button event when I click the button I want to invoke this java script code:
alert("You pressed Me!");
I want to know how to use java script from code behind.
How to write the code below in one line.
Dim smtpDtls
As
New
MyEmailClass
smtpDtls.getSmtpDtls(teamID)
how to create gridview (with code).i am trying to build a table (gridview) where i can just edit and update.
Code:
<div class="content">
<div class="table-responsive">
<asp:GridView ID="gvTable" runat="server" ClientIDMode="Static" AllowSorting="True" ShowHeaderWhenEmpty="True" SortedAscendingHeaderStyle-CssClass="sorting_asc" SortedDescendingHeaderStyle-CssClass="sorting_desc" HeaderStyle-CssClass="sorting" AutoGenerateColums="True" onrowediting="gvTable_RowEditing" onrowupdating="gvTable_RowUpdating" >
[code]....
How do i update the existing data and it will auto save in my sql database.
How can I write this with a masterpage
View 2 RepliesWhat is the Best way to write my own HTML from code behind?
i currently use this :
<asp:Literal ID="ltr" runat="server"></asp:Literal>
and from code behind :
ltr.Text = "<p class="specific-class"></p>";
is it a right to do something like this?
Presently I am working using single tier architecture. Now I am wanting to learn how to write code using 3 tier architecture.
View 8 RepliesI have started learning MVC and I have few questions in my mind,
1: As I seen that there is no .cs file in View, then how would I write my code behind for the page. I am very new to inline coding, do I need to learn it ??
2: What if I want to develop pages like I have already done for asp.net 2.0/3.5 websitepreviously.
Though I have gone through some articles regarding MVC and MVP, I am not able to take decision to write code with MVP or MVC pattern?
Which pattern will allow us to write loosely coupled code? Can I assume Asp.Net web forms is MVP by default?
i have been assigned a task to develop ICR in asp.net using c# i have no idea to implement it please give me idea from scratch, and also how to write code and which name space is used to perform this task
View 10 Repliesi want to use a link button in default.aspx.cs....
how i can write this and put that in a Literal?
I have a textbox on my aspx page defined as:
<input name= tbdisplay type="text">
I can pick the data (I built a touch screen keyboard and I used javascript to write to the thextbox) from code behind using:
string textdisplaydata = this.Request.Form.Get("tbdisplay");
But I can't figure out the way to write back to the same display from code behind. In other words, I need to send a message back to the textbox from code behind. Because I did not defined the tbdisplay to runat="server", I can't see the control tbdisplay. Also, I can't run the tbdisplay at server because the keyboard doesn't work.
<asp:button id="button1" onClick="Button1_click" runat="server"/>
<asp:button id="button2" runat="server"/>
Button1_click(sender, args)
{
//how to call button 2 to be clicked?
}
How could I write code behind to fire the button2 to be clicked?
How do I write code for a label in thedetailsview insetitemtemplate: I'm trying to write a profile property to a label and then the dv saves to a database. Here is what I have but I get and error
View 2 Repliesone particular area the image should scroll for every 45 sec's
View 2 RepliesI had write a code about get a picture from url and save as bitmap. However, there was a problem in HttpWebResponse. It didn't run the code start from HttpWebResponse.Then my whole website die there.
[Code]....
I have web page, in that I place some links(hyperlinks or linkbuttons).
each button, when user clicks then a file should be downloaded to the user system..
files that are to be downloaded exists in asp.net website project folder>>downloads folder.
I have a panel which displays data on selected criteris with the followin columns Confirmationnumber fromdate todate propertynumber now the data which is in the confirmation number is a hyperlink which when clicked should be directed to the page with that particular confirmation number and similarly the property number is a hyperlink which should be directed to that property number page when clicked I dont know how to give the link to it
[code]...
<td><a href="/?ID=Booking.View&BookingID=<%#Eval("ReservationID")%>"><%#Eval("BookingConfirmationCode")%></a></td>
The above code is working so how I present this bold line in the above criteria
how to write text in asp.panel in code behind
[Code]....
i would like to write the following within a div (myGallerySet) from behind code (vb.net) on pageLoad:
<div id="gallery1" class="galleryElement">
<h2>Brugges 2006</h2>
<div class="imageElement">
<h3>Item 1 Title</h3>
<p>Item 1 Description</p>
<a href="#" title="open image" class="open"></a>
<img src="images/brugges2006/1.jpg" class="full" />
<img src="images/brugges2006/1-mini.jpg" class="thumbnail" />
</div>
<div class="imageElement">
<h3>Item 2 Title</h3>
<p>Item 2 Description</p>
<a href="#" title="open image" class="open"></a>
<img src="images/brugges2006/2.jpg" class="full" />
<img src="images/brugges2006/2-mini.jpg" class="thumbnail" />
</div>
</div>
<div id="gallery2" class="galleryElement">
<h2>Stock Photos</h2>
<div class="imageElement">
<h3>Item 1 Title</h3>
<p>Item 1 Description</p>
<a href="#" title="open image" class="open"></a>
<img src="images/stock/77196_6784.jpg" class="full" alt="Item 1 Title">
<img src="images/stock/77196_6784_002.jpg" class="thumbnail" alt="thumbnail of Item 1 Title">
</div>
<div class="imageElement">
<h3>Item 2 Title</h3>
<p>Item 2 Description</p>
<a href="#" title="open image" class="open"></a>
<img src="images/stock/165392_5486.jpg" class="full" alt="Item 2 Title">
<img src="images/stock/165392_5486_002.jpg" class="thumbnail" alt="thumbnail of Item 2 Title">
</div>
</div>
Basically I have images details which are stored in a database and would need to dynamically added hence, why i need to write within a div container.
How to create progressbar in jquery + Asp.net(C#) without adding progress plunging.
View 2 Replies