ASP.NET
|
|
 |
|

|
Can any body guide me that how to split json format reply, in webresponse ?
|
|
|
|
|

|
Hi,
Why I am getting the above error for this line:
TitleLabel.Text = data_table.Rows[0]["post_category_name"].ToString() + " - " + data_table.Rows[0]["member_channel_name"].ToString();
here is my stored procedure:
BEGIN
SELECT DISTINCT
post_category.post_category_guid,
post_category.post_category_name,
web_members.web_member_guid,
member_channels.member_channel_address,
member_channels.member_channel_name
FROM
post_category
INNER JOIN member_posts ON member_posts.member_post_category = post_category.post_category_id
INNER JOIN member_channels ON member_posts.member_channel_id = member_channels.member_channel_id
INNER JOIN web_members ON member_channels.web_member_id = web_members.web_member_id
WHERE member_channels.member_channel_address = param_web_address;
END
Technology News @ www.JassimRahma.com
|
|
|
|

|
As per your code, it does not seem issue here. I'll advise you first run your Proc and see whether it is running and resturning data correclty.
Then you debug your code and check the datatable in immidiate window and see it in visualiser what columns are available in datatable.
|
|
|
|

|
So you get the error "Hi"
Never seen that error before. That's a new one for me.
|
|
|
|

|
Hello *,
I aked my question a few days ago on stack overflow but I'am not lucky with the one answer. Perhaps, someone can help me here.
My first controller method is:
[HttpGet]
public ActionResult Item()
In this method, I have some business logic like retrieve the user id with sql or watch out if a user has the permission to see some regions on the view or whatever.
I used bool variables in my viewbag and get these data with razor.
It's only one case..
Now, the user is going to fill data in a form, will make a post and then I call the same method, but with a [HttpPost()] flag (I saw it in many tutorials).
[HttpPost]
public ActionResult Item(FormCollection formCollection)
Ok, now I can collect the values out of the form and can work with them.
BUT if this function is ready, it gives as standard View() back and I can't made the business logic like in the Get() method or must I really copy/pase all these stuff or get it in a own function and call it two times?
Here is a link to my stack overflow question, perhaps you unterstand me better with that:
Stack Overflow question
Best regards, Patrik
|
|
|
|

|
Hi Patric.
It seems that what you described as "some business logic" is some common processing that you want to fire in both GET and POST methods. In that case you can refactor it as separate method.
If that logic is valid only inside that one controller you can make private method that is called by both Item() methods - private controller methods are not mapped to MVC actions.
If it is more application wide you can also consider refactoring it out to some helper class.
BTW - copy/paste should be banned in any development environment
Regards,
Mariusz.
--
"My software never has bugs. It just develops random features."
|
|
|
|

|
Guys;
I have published a website to a remote sever.
The get requests to page returns the correct HTML response, but request to javasript and and css files returns a blank response.
Help people,so poeple can help you.
|
|
|
|

|
With what you mention, I will start looking if the files are present at the path they should be. Relative paths as per deployment can be different then development environment. Using ResolveUrl helps.
|
|
|
|
 |
|
|
General
News
Suggestion
Question
Bug
Answer
Joke
Rant
Admin